Is there a cmd command for disabling the startup of windows services
(similar to NET STOP)? Is there a cmd command for disabling the startup of windows services (similar to NET STOP). I have over 500 pcs that have services running from a piece of old software that has now been made redundant, and rather than waling to each PC individually and manually disabling it through Services.MSC.
Ideally i want to create a batch file that i can run once over the network to disable to service. I have implemented a temporary solution using a NET STOP batch file to stop several services, but this is having impacts on startup time.
KASABIAN: sc stop servicename only stops the service (same as NET STOP) i need to actually disable it.
|