I need to run a batch script during the night when no one is in the office-What is the best method to do this
Solved! Go to Solution.
Take a look at this blog post, which discusses using the Windows Task Scheduler and Python installed on the machine. It's somewhat similar to running a script using the command prompt, you'd pass in the path to the python.exe and then the script as an argument.
Take a look at this blog post, which discusses using the Windows Task Scheduler and Python installed on the machine. It's somewhat similar to running a script using the command prompt, you'd pass in the path to the python.exe and then the script as an argument.
Thank You