Mon 6 Oct, 2008
Disable unneeded Windows Services easily from command line
Comments (0) Filed under: System Administration, WMICWindows has a inbuilt WMIC command which can help you do lot of things from command line. Below list of commands will set some unneeded services to disabled mode.
You can copy it in a batch file and run whenever you want.
WMIC SERVICE WHERE Caption=”SSDP Discovery Service” CALL ChangeStartMode “Disabled”
WMIC SERVICE WHERE Caption=”Alerter” CALL ChangeStartMode “Disabled”
WMIC SERVICE WHERE Caption=”ClipBook” CALL ChangeStartMode “Disabled”
WMIC SERVICE WHERE Caption=”IMAPI CD-Burning COM Service” CALL ChangeStartMode “Disabled”
WMIC SERVICE WHERE Caption=”Machine Debug Manager” CALL ChangeStartMode “Disabled”
WMIC SERVICE WHERE Caption=”Messenger” CALL ChangeStartMode “Disabled”
WMIC SERVICE WHERE Caption=”Themes” CALL ChangeStartMode “Disabled”
