Fix compile script, update VM tools, Vagrant -> 2.0.3

This commit is contained in:
Chris Long
2018-03-21 18:02:54 -07:00
parent 2de1c1dcbf
commit 0fd7d0647b
10 changed files with 33 additions and 23 deletions

View File

@@ -1,7 +1,20 @@
Try {
Write-Output "Set power plan to high performance"
$HighPerf = powercfg -l | %{if($_.contains("High performance")) {$_.split()[3]}}
# $HighPerf cannot be $null, we try activate this power profile with powercfg
#
if ($HighPerf -eq $null)
{
throw "Error: HighPerf is null"
}
$CurrPlan = $(powercfg -getactivescheme).split()[3]
if ($CurrPlan -ne $HighPerf) {powercfg -setactive $HighPerf}
} Catch {
Write-Warning -Message "Unable to set power plan to high performance"
Write-Warning $Error[0]
}