Answers for "calling a python script on system reboot in windows"

2

python restart script

sys.stdout.flush()
os.execl(sys.executable, 'python', __file__, *sys.argv[1:])
Posted by: Guest on August-06-2021
1

how to reboot a python script

import os

while 1:
    os.system("python main.py")
    print "Restarting..."
    exit()
Posted by: Guest on March-21-2020

Code answers related to "calling a python script on system reboot in windows"

Python Answers by Framework

Browse Popular Code Answers by Language