I usually run Python scripts on Linux using crontab as follows:
*/5 * * * * run-one /home/user/Desktop/folder/myScript.py > /home/user/Desktop/folder/myScript.log 2>&1
Now I need to run the same script on Windows. It should run every 5 minutes as well. Is there any way to do this using command line? I don't prefer Task Scheduler.