How to run program after startup 30 min

  • Thread starter Thread starter moonhkt
  • Start date Start date
M

moonhkt

Guest
Hi All

I want start program after startup 30min. Do you know how to setup in

Windows XP ?

Using vbs is ok for me or other suggestion.



moonhk
 
moonhkt wrote:

> Hi All

> I want start program after startup 30min. Do you know how to setup in

> Windows XP ?

> Using vbs is ok for me or other suggestion.




You can use the Ping command in a batch file or script but I would

recommend that you use the Sleep command from the Server 2003 Resource

Kit. Just put a batch file or script (or shortcut to the batch file) in

your Startup folder and use the sleep command in the batch file delay

the startup of the application.



http://www.microsoft.com/downloads/...69-57ff-4ae7-96ee-b18c4790cffd&displaylang=en

Download details: Windows Server 2003 Resource Kit Tools



John
 
moonhkt wrote:

> Hi All

> I want start program after startup 30min. Do you know how to setup

> in Windows XP ?

> Using vbs is ok for me or other suggestion.




Startup?



Simplest for individual:

Batch script with the sleep.exe called to wait for 30 minutes and then the

command you want to run - where the batch script is called from a scheduled

task that starts when the computer starts.



--

Shenan Stanley

MS-MVP

--

How To Ask Questions The Smart Way

http://www.catb.org/~esr/faqs/smart-questions.html
 
Back
Top