Restarting Services that fail at startup

  • Thread starter Thread starter Glenn
  • Start date Start date
G

Glenn

Hello

As far as i can see a windows service which fails at startup( i.e times
out on a slow machine) doesn't get recovered by the services recovery
settings(i.e retart after first failure) like a service which fails
inlife

can anyone suggest how i can get a service to attempt to use it
recovery options if it fails at startup?

Thanks in Advance

Glenn
 
These articles may help.

How to Delay Loading of Specific Services
http://support.microsoft.com/default.aspx?kbid=193888

HOWTO: Control Device Driver Load Order
http://support.microsoft.com/default.aspx?scid=kb;[LN];115486

--
Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

:
| Hello
|
| As far as i can see a windows service which fails at startup( i.e times
| out on a slow machine) doesn't get recovered by the services recovery
| settings(i.e retart after first failure) like a service which fails
| inlife
|
| can anyone suggest how i can get a service to attempt to use it
| recovery options if it fails at startup?
|
| Thanks in Advance
|
| Glenn
|
 
Hello

As far as i can see a windows service which fails at startup( i.e times
out on a slow machine) doesn't get recovered by the services recovery
settings(i.e retart after first failure) like a service which fails
inlife

can anyone suggest how i can get a service to attempt to use it
recovery options if it fails at startup?

Thanks in Advance

Glenn


See tip 8560 » What services and drivers are configured to start but are currently stopped?
in the 'Tips & Tricks' at http://www.jsifaq.com

Then

for /f "Tokens=1*" %%a in ('SDNS^|find "Start=0x2"^|findstr "Type=0x20 Type=0x10"') do (
net start %%a
)

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