up vote 4 down vote favorite
1
share [g+] share [fb]

How can I reboot a Windows XP64 Machine in a Python Script? This machine does not have the "shutdown" or "restart" executables available.

link|improve this question
feedback

2 Answers

found it

win32api.InitiateSystemShutdown("localhost", "Maintenance Reboot", 60, 1, 1)

link|improve this answer
You should accept your answer (check mark) :) – srand Mar 25 '10 at 19:41
feedback

You can use win32api module and call WinApi functions. Recipe at code.activestate.com

link|improve this answer
Yes, but what functions? – Yeraze Dec 4 '08 at 17:04
i'm updated my answer – Igorekk Dec 4 '08 at 17:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.