Login Register






How to make a python program run at start-up (Windows filter_list
Author
Message
RE: How to make a python program run at start-up (Windows #11
You could try using py2exe (google it), and convert your python program to exe, then copy it to:

Code:
C:\Users\YOUR-USER-NAME\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

Windows will automatically load your program every time windows starts up.

Reply

RE: How to make a python program run at start-up (Windows #12
(04-06-2014, 01:31 AM)kustomrtr Wrote: You could try using py2exe (google it), and convert your python program to exe, then copy it to:

Code:
C:\Users\YOUR-USER-NAME\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

Windows will automatically load your program every time windows starts up.

Thank you soo much.. that's what I did. I compiled it to exe using py2exe and I used inno to create a shortcut in start-up folder.. :Smile: thanx

Reply