This file contains hidden or 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 |
This file contains hidden or 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
| export enum TLV_SVS_V3 { | |
| StateVector_V3 = 201, | |
| StateVectorEntry_V3 = 202, | |
| SvSeqNoEntry_V3 = 210, | |
| SvBootTime_V3 = 212, | |
| SvSeqNo_V3 = 214, | |
| } | |
| export let T_IN_StateVector_V3 = [TLV_V3.Content]; | |
| export let T_IN_StateVectorEntry_V3 = [TLV_SVS_V3.StateVector_V3]; | |
| export let T_IN_SvSeqNoEntry_V3 = [TLV_SVS_V3.StateVectorEntry_V3]; |
OlderNewer