Select Page

Required Files: None


Disable Sleep Power Option


 

Import-Module $env:SyncroModule
 
 
#Set display sleep to 5 minutes when on AC
c:\windows\system32\powercfg.exe -change -monitor-timeout-ac 5
 
#Set display sleep to 5 minutes when on battery
c:\windows\system32\powercfg.exe -change -monitor-timeout-dc 5
 
#Set hard drive sleep to 10 minutes when on AC
c:\windows\system32\powercfg.exe -change -disk-timeout-ac 10
 
#Set hard drive sleep to 10 minutes when on battery
c:\windows\system32\powercfg.exe -change -disk-timeout-dc 10
 
#Set Sleep to never when on AC
c:\windows\system32\powercfg.exe -change -standby-timeout-ac 0
 
#Set Sleep to 10 minutes when on battery
c:\windows\system32\powercfg.exe -change -standby-timeout-dc 10
 
#Set Hibernation to never when on AC
c:\windows\system32\powercfg.exe -change -hibernate-timeout-ac 0
 
#Set Hibernation to 10 minutes when on battery
c:\windows\system32\powercfg.exe -change -hibernate-timeout-dc 10