![]() |
|
How to make a python program run at start-up (Windows - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Python (https://sinister.li/Forum-Python) +--- Thread: How to make a python program run at start-up (Windows (/Thread-How-to-make-a-python-program-run-at-start-up-Windows) Pages:
1
2
|
How to make a python program run at start-up (Windows - bobdos007 - 04-01-2014 Hello Guys .. I made a simple program in python and I want to know to make it run at start-up on windows operators. Please note that this program is compiled to work on windows.. RE: How to make a python program run at start-up (Windows - alok9shm - 04-01-2014 (04-01-2014, 10:45 AM)bobdos007 Wrote: Hello Guys .. You can try putting it in the startup folder. RE: How to make a python program run at start-up (Windows - bobdos007 - 04-01-2014 but how you are going to move it to start-up folder.. This program is dedicated to be installed on other windows users .. So, things should be automated.. RE: How to make a python program run at start-up (Windows - chmod - 04-01-2014 (04-01-2014, 10:45 AM)bobdos007 Wrote: Please note that this program is compiled to work on windows.. Python is an interoperated language and therefore is not compiled as such, as long as python is installed on the system putting it inside the startup folder should work RE: How to make a python program run at start-up (Windows - bobdos007 - 04-01-2014 (04-01-2014, 11:25 AM)chmod Wrote:(04-01-2014, 10:45 AM)bobdos007 Wrote: Please note that this program is compiled to work on windows.. Thank you for your reply, But I have already compiled the py script to exe and it worked as a Stand-alone program .. This means, it can work on Windows without having python installed. RE: How to make a python program run at start-up (Windows - Deque - 04-02-2014 This question has nothing to do with Python, though. Look here: http://windows7themes.net/en-us/3-ways-to-run-programs-at-windows-startup-via-registry-task-scheduler-or-startup-folder/ RE: How to make a python program run at start-up (Windows - bobdos007 - 04-02-2014 (04-02-2014, 07:24 AM)Deque Wrote: This question has nothing to do with Python, though. Thanks a lot for your help. RE: How to make a python program run at start-up (Windows - daada2010 - 04-02-2014 try to find someone in fiverr to make test to it RE: How to make a python program run at start-up (Windows - bobdos007 - 04-02-2014 (04-02-2014, 03:45 PM)daada2010 Wrote: try to find someone in fiverr to make test to it I guess I should try it just on my friends laps ... I like free things . RE: How to make a python program run at start-up (Windows - Ex094 - 04-04-2014 This is simple, You can place the Python script inside the Start up folder on your respective Windows OS because at every start up, Windows tries to run every file inside the Start up folder so when you'll put your script in there, It'll execute too. |