Need a Bigfix script to stop start a few services in win 2003 Machine

(imported topic written by SystemAdmin)

HI Guys ,

Anyone got a Action script to stop a few windows service’s in win2k3 machine . Then after fixlets are deployed machine should restart and then the services are started . Please provide ur inputs .

(imported comment written by NoahSalzman)

The Windows syntax is:

net stop 
"service name"

So, all you have to do in Action Script is:

waithidden net stop 
"service name" waithidden net stop 
"some other service name"

To start up services you just to the same thing with “net start”.