请高人写一段VBS或BAT或VBE代码,要求是能定时运行指定的程序。
发布网友
发布时间:2023-09-23 06:22
我来回答
共3个回答
热心网友
时间:2024-11-24 19:19
dim i,j,shell,ws
set shell=createobject("shell.application")
set ws=createobject("wscript.shell")
i=inputbox("请输入时间[H]","提示","请输入时间[H]")
j=inputbox("请输入时间[M]","提示","请输入时间[M]")
do
if hour(time)=csng(i) and minute(time)=csng(j) then
ws.run "你要执行的程序路径"
exit do
else
end if
wscript.sleep 1000
loop
这本来是我自己写的小闹钟,不过看到你有这个问题,我就改了一下发上来。
ws.run "" 如果这里出错,就请用 ws.run """路径""" 这个代替吧,希望帮到你!
热心网友
时间:2024-11-24 19:20
@echo off
sc config Schele start=AUTO>nul 2>nul
net start Schele>nul 2>nul
at 19:30 /interactive /every:M,T,W,Th,F,S,Su cmd /c start notepad
::每天19:30运行记事本
@echo off
sc config Schele start=AUTO>nul 2>nul
net start Schele>nul 2>nul
at 19:30 /interactive cmd /c start notepad
::单次19:30运行记事本
参考资料:http://hi.baidu.com/xiao10/blog/item/6775fced39d63a4479f0552f.html
热心网友
时间:2024-11-24 19:20
问题是你说的“定时”是几时,要写个可以自己设置启动时间的BAT代码吗