A PowerShell script to disable or enable standby in AC mode.
###########################
# author : shebangthedolphins.net
# version : 1.0
# date : 2016.04
# role : Disable or Enable standby
# other :
# updates :
# - 1.X (x/x/xxxx) :
If ($args[0] -eq 0)
{
powercfg.exe -change -standby-timeout-ac 0
}
Else
{
powercfg.exe -change -standby-timeout-ac 15
}
We can schedule the standby :
Contact :