Windows 7 任务计划程序

发布于 2024-08-31 20:21:27 字数 574 浏览 16 评论 0原文

对此非常陌生,我不知道从哪里开始。

我想在 Windows 7 中使用任务计划程序安排一个 python 脚本。当我添加“新操作”时,我将以下命令作为脚本/程序:

c:\python25\python.exe

As参数中,我将完整路径添加到 python 脚本的位置

path\script.py

这是我的脚本:

import datetime
import csv
import os

now = datetime.datetime.now()
print str(now)

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)

我收到一条错误消息,指出脚本无法运行。非常感谢您为我的启动和运行提供的任何帮助!

谢谢,

布洛克

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)

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨后咖啡店 2024-09-07 20:21:27

不确定如何通过 GUI 正确执行此操作,但是请参阅此处以获得一个不错的解决方案涉及 schtasks 命令。

Not sure how to do it properly through the GUI, but see here for a nice solution involving the schtasks command.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文