Delayed Service Start

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

Guest
I want to delay the startup of windows services. I do not want to create
dependencies to do this. I need to be able to start windows services on a
timed delay. It can use another service as a starting point to cascade the
starting of other services. Is there a reg entry that can delay the start of
the service based on the boot time?

Thanks
 
Re: Delayed Service Start


"Mike" <me@me.com> wrote in message
news:eZrYC%23J3IHA.4500@TK2MSFTNGP06.phx.gbl...
>I want to delay the startup of windows services. I do not want to create
>dependencies to do this. I need to be able to start windows services on a
>timed delay. It can use another service as a starting point to cascade the
>starting of other services. Is there a reg entry that can delay the start
>of the service based on the boot time?
>
> Thanks


You could set the start mode of this service to "manual", then
create a scheduled task that launches at boot time. It would
invoke this batch file to create a delay of some 300 seconds.
@echo off
ping localhost -n 300 > nul
net start "NameOfService"
 
Re: Delayed Service Start

Great easy solution...THANKS!


"Pegasus (MVP)" <I.can@fly.com.oz> wrote in message
news:OP3dY$M3IHA.3500@TK2MSFTNGP05.phx.gbl...
>
> "Mike" <me@me.com> wrote in message
> news:eZrYC%23J3IHA.4500@TK2MSFTNGP06.phx.gbl...
>>I want to delay the startup of windows services. I do not want to create
>>dependencies to do this. I need to be able to start windows services on a
>>timed delay. It can use another service as a starting point to cascade the
>>starting of other services. Is there a reg entry that can delay the start
>>of the service based on the boot time?
>>
>> Thanks

>
> You could set the start mode of this service to "manual", then
> create a scheduled task that launches at boot time. It would
> invoke this batch file to create a delay of some 300 seconds.
> @echo off
> ping localhost -n 300 > nul
> net start "NameOfService"
>
 
Back
Top