How to Prevent Windows 7 Sleep State While Using Spotify

audiosleepwindows 7

Does anyone know if there is a way to prevent windows 7 to go to sleep while using Spotify?

I have read the answers in this question but if it's possible I'd rather not resort to start a third party program like insomnia every time I want to listen to music.

So are there a setting or a registry entry buried somewhere deep in windows that allows you to do this? Either for a group like "all audio" or for specific programs?

Best Answer

you could create a batch file to launch spotify:

powercfg -change -standby-timeout-ac 0
start /wait "C:\Program Files\Spotify\spotify.exe"
powercfg -change -standby-timeout-ac 30

and launch it with hstart to hide the console window: hstart /NOCONSOLE "launch spotify.bat"

Related Question