Skip to content

Instantly share code, notes, and snippets.

@andre-f-paggi
Created September 23, 2017 22:35
Show Gist options
  • Save andre-f-paggi/228bf45936b553fd8f7c4f5ae01fb411 to your computer and use it in GitHub Desktop.
Save andre-f-paggi/228bf45936b553fd8f7c4f5ae01fb411 to your computer and use it in GitHub Desktop.
Configure power options to never turn off: monitor, disk, hibernate, turn off
@echo off
powercfg.exe -x -monitor-timeout-ac 0
powercfg.exe -x -monitor-timeout-dc 0
powercfg.exe -x -disk-timeout-ac 0
powercfg.exe -x -disk-timeout-dc 0
powercfg.exe -x -standby-timeout-ac 0
powercfg.exe -x -standby-timeout-dc 0
powercfg.exe -x -hibernate-timeout-ac 0
powercfg.exe -x -hibernate-timeout-dc 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment