文章詳情頁
通過注冊表修改硬件加速(關(guān)閉與打開硬件加速)
瀏覽:220日期: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. win8系統(tǒng)下如何關(guān)閉顯卡硬件加速?2. 通過修改注冊表來提高系統(tǒng)的穩(wěn)定安全讓計(jì)算機(jī)堅(jiān)強(qiáng)起來3. 讓修改過的注冊表快速生效的方法4. 利用Windows注冊表來清理系統(tǒng)垃圾文件5. Windows系統(tǒng)精華技巧匯總帶注冊表6. 修改注冊表 加快Windows7關(guān)機(jī)速度7. 系統(tǒng)維護(hù):安全恢復(fù)Win98系統(tǒng)的注冊表8. 注冊表命令大全 118條常用的注冊表命令集錦9. Win10系統(tǒng)注冊表查找定位方法10. Win10電腦怎么導(dǎo)出注冊表項(xiàng)?
排行榜
