I\'m looking for an automatize way of doing Windows Power Management functions: - Reboot - Shutdown - Hibernate - Sleep - Wakeup
Is there a Python module to cover th
I also went with the command line:
import os os.system(r'%windir%\system32\rundll32.exe powrprof.dll,SetSuspendState Hibernate')