Windows 7 Task Scheduler
Very new to this, and I have no idea where to start.
I want to schedule a python script using Task Scheduler in Windows 7. When I add a "New Action", I place the following command as the script/program :
c:\python25\python.exe
As the argument, I add the full path to the location of my python script
path\script.py
Here is my script:
import datetime
import csv
import os
now = datetime.datetime.now()
print str(now)开发者_如何学Go
os.chdir('C:/Users/Brock/Desktop/')
print os.getcwd()
writer = csv.writer(open("test task.csv", "wb"))
row = ('This is a test', str(now))
writer.writerow(row)
I got an error saying the script could not run. Any help you can provide to get me up and running will be very much appreciated!
Thanks,
Brock
Not sure how to do it properly through the GUI, but see here for a nice solution involving the schtasks
command.
精彩评论