Created
September 6, 2015 08:13
-
-
Save pdemanget/a62c2a2a66a3aca29733 to your computer and use it in GitHub Desktop.
Disable the generally unneeded services in Windows 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sc stop WSearch | |
sc stop hidserv | |
sc stop napagent | |
sc stop iphlpsvc | |
sc stop TrkWks | |
sc stop CscService | |
sc stop WdiSystemHost | |
sc stop PcaSvc | |
sc stop DPS | |
sc stop WPDBusEnum | |
sc config WSearch start= disabled | |
sc config hidserv start= disabled | |
sc config napagent start= disabled | |
sc config iphlpsvc start= disabled | |
sc config TrkWks start= disabled | |
sc config CscService start= disabled | |
sc config WdiSystemHost start= disabled | |
sc config PcaSvc start= disabled | |
sc config DPS start= disabled | |
sc config WPDBusEnum start= disabled |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment