Run Python script on a specified time schedule

1826
2
Jump to solution
03-24-2017 09:17 AM
LarryAdgate
Occasional Contributor

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  

0 Kudos
1 Solution

Accepted Solutions
JonathanQuinn
Esri Notable Contributor

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.

View solution in original post

2 Replies
JonathanQuinn
Esri Notable Contributor

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.

LarryAdgate
Occasional Contributor

Thank You

0 Kudos