|
zheng514
新手上路

积分 12
发帖 4
注册 2006-11-21 来自 江苏苏州
状态 离线
|
『楼 主』:
定时在某个时间运行某个程序批处理怎么实现
使用 LLM 解释/回答一下
我想建立一个批处理文件,自动在每个星期三,运行某个程序(比如:a.exe),其他时间则无动作。
Last edited by namejm on 2006-12-22 at 10:26 PM ]
I want to create a batch file that automatically runs a certain program (for example: a.exe) every Wednesday, and does nothing on other days.
Last edited by namejm on 2006-12-22 at 10:26 PM ]
|
|
2006-12-21 09:32 |
|
|
scriptor
银牌会员
    
积分 1187
发帖 555
注册 2006-12-21
状态 离线
|
『第 2 楼』:
Does it meet you?
使用 LLM 解释/回答一下
Please Named autojob.bat
Code As Follow,Clip it and paste it in you .txt file and then rename it as above!
@echo off echo
at 12:00 /every: thursday a.exe
@echo off
请先明确这是一段关于创建批处理文件的内容,以下是翻译:
请将其命名为 autojob.bat
代码如下,复制它并粘贴到你的.txt文件中,然后将其重命名为上述名称!
@echo off echo
at 12:00 /every:thursday a.exe
@echo off
|
|
2006-12-21 09:41 |
|
|
zheng514
新手上路

积分 12
发帖 4
注册 2006-11-21 来自 江苏苏州
状态 离线
|
『第 3 楼』:
Re:Does it meet you?
使用 LLM 解释/回答一下
Thank you very much!You are so smart.I haved used "AT help" to review the usage of AT command!But I am confused about "AT every:date[,,]".By the way,a.exe should add " ".Right?
非常感谢!你太聪明了。我已经用“AT help”查看了AT命令的用法!但我对“AT every:date”感到困惑。顺便说一下,a.exe应该加上“ ”吧?
|
|
2006-12-21 11:37 |
|
|
lisiyuan
初级用户
 
积分 21
发帖 28
注册 2006-12-15
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
en 呵呵 学到东西了 和额
Hehe, learned something, and uh
|
|
2006-12-21 11:40 |
|
|
scriptor
银牌会员
    
积分 1187
发帖 555
注册 2006-12-21
状态 离线
|
『第 5 楼』:
不要的
使用 LLM 解释/回答一下
Originally posted by zheng514 at 2006-12-20 22:37:
Thank you very much!You are so smart.I haved used "AT help" to review the usage of AT command!But I am confused about "AT every:date".By the way,a.exe should add " &quo ...
No "" is necessary, but you must type the absolute routine of an executable file , such as f:\a.exe
To sum up,
at 12:00 /every:monday,tuesday f:\a.exe
That is ok. No "" is necessary here.
Originally posted by zheng514 at 2006-12-20 22:37:
Thank you very much!You are so smart.I haved used "AT help" to review the usage of AT command!But I am confused about "AT every:date".By the way,a.exe should add " &quo ...
No "" is necessary, but you must type the absolute routine of an executable file , such as f:\a.exe
To sum up,
at 12:00 /every:monday,tuesday f:\a.exe
That is ok. No "" is necessary here.
|
|
2006-12-23 11:25 |
|