Reputation: 33
I want to make a Python 3 tkinter program start when my PC starts. For example, My tkinter window that i programmed must start after I log in. Is there any way I can do this?
Upvotes: 0
Views: 679
Reputation: 26
1.Create a batch file to start your application.
Open Notepad and create batch file based on the following template.
"Path where your Python exe is stored\python.exe" "Path where your Python script is stored\script name.py"
pause
Save the file as a bat file (Ex: script.bat) and create a shortcut.
2. Put the batch file in startup folder
shell:startup
in run window and press enterUpvotes: 1