Last active
June 12, 2024 03:18
-
-
Save pulsejet/181a3ed0905e41983fc3c3976301fb50 to your computer and use it in GitHub Desktop.
Fix virtualbox big.LITTLE performance problems (tested on Dell)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# first set the My Dell app to use Ultra Performance mode | |
# enable high performance power plan | |
powercfg /s SCHEME_MIN | |
# disable throttling for vbox | |
powercfg /powerthrottling disable /path "C:\Program Files\Oracle\VirtualBox\VBoxHeadless.exe" | |
powercfg /powerthrottling disable /path "C:\Program Files\Oracle\VirtualBox\VirtualBoxVM.exe" | |
powercfg /powerthrottling disable /path "C:\Program Files\Oracle\VirtualBox\VirtualBox.exe" | |
powercfg /powerthrottling list | |
# run vbox as admin | |
# set cores of VM to number of logical processors (not physical cores) | |
# restart vms |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment