How to enable and disable hardware acceleration in Win7 system
Today, I will show you how to turn on and off hardware acceleration in Win7 system. The content of the article is good. Now I would like to share it with you. Friends who feel in need can understand it. I hope it will be helpful to you. Let's read it along with the editor's ideas.
In the course of daily use, if you feel that the running speed and efficiency of the computer is not high, you can choose to turn on hardware deceleration to speed up the running speed. So how do you turn hardware acceleration on / off in win10 systems? Let's let the editor show you how the Win7 system turns hardware acceleration on / off.
The easiest way to turn on and off hardware acceleration is to create .bat files. Copy the following into a text document, save it as a .bat format file, and then run it.
First, turn off hardware acceleration:
@ echo off
Title enables DirectDraw
Mode con:cols=50 lines=12
Color ff
Echo is turning on DirectDraw acceleration.
Reg add "HKLM/SOFTWARE/Microsoft/Direct3D/Drivers" / v SoftwareOnly / t REG_DWORD / d 0 / f 0 > nul 1 > nul
Reg add "HKLM/SOFTWARE/Microsoft/DirectDraw" / v EmulationOnly / t REG_DWORD / d 0 / f 0 > nul 1 > nul
Gpupdate / force 0 > nul 1 > nul
2. Enable hardware acceleration:
@ echo off
Title shuts down DirectDraw
Mode con:cols=50 lines=12
Color ff
Echo is turning off DirectDraw acceleration.
Reg add "HKLM/SOFTWARE/Microsoft/Direct3D/Drivers" / v SoftwareOnly / t REG_DWORD / d 1 / f 0 > nul 1 > nul
Reg add; HKLM/SOFTWARE/Microsoft/DirectDraw "/ v EmulationOnly / t REG_DWORD / d 1 / f 0 > nul 1 > nul
Gpupdate / force 0 > nul 1 > nul
This is all about how the Win7 system turns hardware acceleration on and off. For more information about how to turn hardware acceleration on and off for Win7 systems, you can search the previous articles or browse the following articles to learn! I believe the editor will add more knowledge to you. I hope you can support it!