Windows Server 2003
1832951 Members
2861 Online
110048 Solutions
New Discussion

Srart Services while booting

 
cool...
Frequent Advisor

Srart Services while booting

I want to start some services along with machine boot process .Usually we can set start up options so that it require login and after login those start up scripts will be executed ,in my case before login I want some services to be start along with the OS is it possible ? if possible please give me some tips or scripts whatever necessary
3 REPLIES 3
Igor Karasik
Honored Contributor

Re: Srart Services while booting

You can define this program as service, or more simple way - you can define it in Task scheduler with options "start at system startup" - it means "when my computer starts (before a user logs on)"
Phil.Howell
Honored Contributor

Re: Srart Services while booting

set to automatic in services.msc ?

you can also set services to be dependent on other services starting.

any script in this folder will run on boot

C:\Windows\system32\GroupPolicy\Machine\Scripts\Startup
WFHC-WI
Honored Contributor

Re: Srart Services while booting

You can also use the command line tools net or sc:


net start

sc start

These fit well in a startup script.

good luck, we appreciate the points if you appreciate the answers!