Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Windows教程綜合 >> 系統常見問題解答 >> 通過注冊表修改硬件加速

通過注冊表修改硬件加速

日期:2017/1/20 17:47:43      編輯:系統常見問題解答
關閉硬件加速: 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 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 將上述內容復制到記事本中,保存成bat格式,直接運行即可!
Copyright © Windows教程網 All Rights Reserved