vbs Timer script to run other script 
Author Message
 vbs Timer script to run other script

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


Wed, 28 Jul 2004 23:31:48 GMT  
 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



Wed, 28 Jul 2004 23:41:45 GMT  
 vbs Timer script to run other script
never mind. I found it in the advanced.
Thanks anyway.


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



Wed, 28 Jul 2004 23:46:25 GMT  
 vbs Timer script to run other script
Thanks.
I will try it.


Quote:
> Simple do-loop will do.

> set s=createobject("wscript.shell")
> do
>  wscript.sleep 1000*60*5
>  s.run "c:\x.vbs"
> loop



> > 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



Wed, 28 Jul 2004 23:47:31 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. Running a .vbs script from within a .vbs script

2. Launching 6 .vbs scripts simultaneously from a single script

3. Cannot Start debugging .vbs-Script in MS Script Debugger

4. Running a file from a .VBS script

5. Cant Run VBS Scripts

6. VB Script - Can a running script derive it's own path

7. Problems seeing network shares when VBS script is run from OEM event or if script is running as a service.

8. Newbie question - calling a VBS script from another VBS script

9. Include another VBS script file in a main VBS script

10. Call a VBA procedure from within VBS script?

11. newbie:configuring outlook profile with a vbs lgon script

12. VBS scripting with a IIS twist

 

 
Powered by phpBB® Forum Software