Please use the , below script to restart machine.
Run the script procedure as either "system user" and "logged in user"
import subprocess;
sysdown=subprocess.Popen(('shutdown /r '),shell=True,stdout=subprocess.PIPE);
for line in iter(sysdown.stdout.readline,''):
print line.rstrip();
Comments