I'm wondering if there's some way to reboot or shutdown Windows from within
Python?
I can log out like this:
win32api.ExitWindowsEx(4)
And according to the documentation, I should be able to shutdown like this:
win32api.ExitWindowsEx(2)
But that returns the following error:
'A required privilege is not held by the client.'
Is there some way to do this? Currently I'm running shutdown.exe, which works,
but I'd rather do it directly if possible.
Thanks for any help.
_______________________________________________
python-win32 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-win32