I run a python script from my command prompt once per day, but I want to automate this with task scheduler. I can only make it open Command Prompt, but I have to then run the python program manually. What am I missing?
- New Folder myTasks
- Create basic Task
- Task name, trigger, start a program
- Program script/
cmd.exe - Add Arguments:
"C:\Users\Matthew Olive\PycharmProjects\VOLALGO1\scraper.py" - Manually Run Task to test it
All I get is the command prompt opening up and it displays: C:\WINDOWS\system32>
It wont actually run the python script.
If I type python "C:\Users\Matthew Olive\PycharmProjects\VOLALGO1\scraper.py"after C:\WINDOWS\system32> it will run just fine.