文章詳情頁
通過注冊表修改硬件加速(關(guān)閉與打開硬件加速)
瀏覽:271日期:2022-06-06 08:10:16
通過注冊表修改硬件加速
關(guān)閉硬件加速:
1
@echo off
2
title 關(guān)閉DirectDraw
3
mode con:cols=50 lines=12
4
color ff
5
6
echo 正在關(guān)閉DirectDraw加速...
7
reg add "HKLM/SOFTWARE/Microsoft/Direct3D/Drivers" /v SoftwareOnly /t REG_DWORD /d 1 /f 0>nul 1>nul
8
reg add "HKLM/SOFTWARE/Microsoft/DirectDraw" /v EmulationOnly /t REG_DWORD /d 1 /f 0>nul 1>nul
9
gpupdate /force 0>nul 1>nul
打開硬件加速:
1
@echo off
2
title 開啟DirectDraw
3
mode con:cols=50 lines=12
4
color ff
5
6
echo 正在開啟DirectDraw加速...
7
reg add "HKLM/SOFTWARE/Microsoft/Direct3D/Drivers" /v SoftwareOnly /t REG_DWORD /d 0 /f 0>nul 1>nul
8
reg add "HKLM/SOFTWARE/Microsoft/DirectDraw" /v EmulationOnly /t REG_DWORD /d 0 /f 0>nul 1>nul
9
gpupdate /force 0>nul 1>nul
將上述內(nèi)容復(fù)制到記事本中,保存成bat格式,直接運(yùn)行即可!
關(guān)閉硬件加速:
1
@echo off
2
title 關(guān)閉DirectDraw
3
mode con:cols=50 lines=12
4
color ff
5
6
echo 正在關(guān)閉DirectDraw加速...
7
reg add "HKLM/SOFTWARE/Microsoft/Direct3D/Drivers" /v SoftwareOnly /t REG_DWORD /d 1 /f 0>nul 1>nul
8
reg add "HKLM/SOFTWARE/Microsoft/DirectDraw" /v EmulationOnly /t REG_DWORD /d 1 /f 0>nul 1>nul
9
gpupdate /force 0>nul 1>nul
打開硬件加速:
1
@echo off
2
title 開啟DirectDraw
3
mode con:cols=50 lines=12
4
color ff
5
6
echo 正在開啟DirectDraw加速...
7
reg add "HKLM/SOFTWARE/Microsoft/Direct3D/Drivers" /v SoftwareOnly /t REG_DWORD /d 0 /f 0>nul 1>nul
8
reg add "HKLM/SOFTWARE/Microsoft/DirectDraw" /v EmulationOnly /t REG_DWORD /d 0 /f 0>nul 1>nul
9
gpupdate /force 0>nul 1>nul
將上述內(nèi)容復(fù)制到記事本中,保存成bat格式,直接運(yùn)行即可!
相關(guān)文章:
1. Windows 注冊表LastKey鍵值的設(shè)置技巧2. Win8系統(tǒng)快速還原注冊表的絕招3. Win8.1注冊表里找不到RPEnabled解決方法4. 如何通過修改注冊表安裝Win11系統(tǒng)呢?5. Win8系統(tǒng)如何防止注冊表被遠(yuǎn)程修改6. Windows Vista中注冊表的備份與恢復(fù)7. Win7系統(tǒng)沒有注冊表操作權(quán)限的解決方法8. 修改注冊表Winlogon讓W(xué)indows XP自動登錄9. Win7系統(tǒng)怎么刪除卸載軟件后注冊表仍殘留的數(shù)據(jù)?10. 去掉系統(tǒng)快捷方式箭頭的途徑——修改注冊表
排行榜
