Disabling  Hyper-V to Speed Up Your Computer

Disabling Hyper-V to Speed Up Your Computer

  • Hi there and welcome to PC Help Forum (PCHF), a more effective way to get the Tech Support you need!
    We have Experts in all areas of Tech, including Malware Removal, Crash Fixing and BSOD's , Microsoft Windows, Computer DIY and PC Hardware, Networking, Gaming, Tablets and iPads, General and Specific Software Support and so much more.

    Why not Click Here To Sign Up and start enjoying great FREE Tech Support.

    This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.
Welcome to our Community
Wanting to join the rest of our members? Feel free to sign up today.
Sign up

Disabling Hyper-V can speed up your computer by freeing up hardware virtualization extensions that are otherwise reserved for the Hyper-V hypervisor.


Many third-party virtualization applications, such as VMware Workstation and VirtualBox, rely on these hardware extensions to function efficiently. When Hyper-V is enabled, it monopolizes these resources, causing other virtualization software to either fail to start or operate in a slower, emulated mode. By disabling Hyper-V, you allow these hardware extensions to be utilized by other applications, thereby improving their performance and responsiveness. Additionally, some security features like Device Guard and Credential Guard also depend on the Hyper-V hypervisor; disabling it can free up system resources that were previously allocated to these features, potentially leading to overall better system performance.


Create and run batch file.


Open a notepad and copy the entire content of the code box below.
Do not copy the word code!
Paste the txt into the notepad. Save the file to your desktop as Windows Search.bat
Now you will right click the on Windows Search.bat and run as administrator.

Warning: This batch file will reboot your machine when complete! Save all work prior to running!!
Code:
@echo off
powershell Disable-WindowsOptionalFeature -Online -FeatureName "HypervisorPlatform"
reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\HvHost" /v "Start" /t REG_DWORD /d "4" /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\vmickvpexchange" /v "Start" /t REG_DWORD /d "4" /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\vmicguestinterface" /v "Start" /t REG_DWORD /d "4" /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\vmicshutdown" /v "Start" /t REG_DWORD /d "4" /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\vmicheartbeat" /v "Start" /t REG_DWORD /d "4" /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\vmicvmsession" /v "Start" /t REG_DWORD /d "4" /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\vmicrdv" /v "Start" /t REG_DWORD /d "4" /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\vmictimesync" /v "Start" /t REG_DWORD /d "4" /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\vmicvss" /v "Start" /t REG_DWORD /d "4" /f
shutdown /r
exit

That's it. Your computer will now reboot. After the reboot, Hyper-V will be off.
Author
Malnutrition
Views
255
First release
Last update

Ratings

0.00 star(s) 0 ratings

More resources from Malnutrition