Staring a service with a delay

  • Thread starter Thread starter Amila Chandrasekera
  • Start date Start date
A

Amila Chandrasekera

I need to start one of the services in our Windows 2000 Server 15 minutes
after rebooting it. THis needs to happen every time we reboot the server.
How can I do it ?

Amila
 
I need to start one of the services in our Windows 2000 Server 15 minutes
after rebooting it. THis needs to happen every time we reboot the server.
How can I do it ?

Amila

I would schedule a Task (a batch job) to start at System Startup:

@echo off
@ping -n 901 127.0.0.1>nul
net start "Service Name"


See tip 4630 in the 'Tips & Tricks' at http://www.jsiinc.com




Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
I need to start one of the services in our Windows 2000 Server 15 minutes
after rebooting it. THis needs to happen every time we reboot the server.
How can I do it ?

Amila
I forgot to mention that you would configure the service for manual startup.


Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
Back
Top