12-23-2010, 03:59 PM
Hi Saran,
Then using this .vbs create a task in the task scheduler.
Regards,
Sudha
Code:
Create .vbs file with the follwing code:
Const DELAY_MINUTES = 10
Wscript.Sleep DELAY_MINUTES * 60000
Do
CreateObject("Wscript.Shell").SendKeys "+"
Wscript.Sleep DELAY_MINUTES * 60000
Loop
Regards,
Sudha