How can I reboot a Windows XP64 Machine in a Python Script? This machine does not have the "shutdown" or "restart" executables available.
|
feedback
|
|
found it win32api.InitiateSystemShutdown("localhost", "Maintenance Reboot", 60, 1, 1) | |||
|
feedback
|
|
You can use win32api module and call WinApi functions. Recipe at code.activestate.com | |||||
|
feedback
|