
vbs Timer script to run other script
Simple do-loop will do.
set s=createobject("wscript.shell")
do
wscript.sleep 1000*60*5
s.run "c:\x.vbs"
loop
Quote:
> I am looking for a vbs that would run my other script every 5 minutes. I
> tried to use the win2k task scheduler but I could not find the option to
run
> every x minutes. Please help. Thanks