Skip to content

Instantly share code, notes, and snippets.

@Cromm
Created May 7, 2013 08:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cromm/5531196 to your computer and use it in GitHub Desktop.
Save Cromm/5531196 to your computer and use it in GitHub Desktop.
In progress batch file to reset the services that were changed using the audio optimisation script
ECHO Restoring the services that were changed back to their default states
REM Network Location Awareness
sc config NlaSvc start= auto
REM Network List Service
sc config netprofm start= demand
REM Print Spooler
sc config Spooler start= auto
REM Themes
sc config Themes start= auto
REM Security Center
sc config wscsvc start= delayed-auto
REM Windows Defender
sc config WinDefend start= auto
REM Diagnostic Service Host
sc config WdiServiceHost start= demand
REM Certificate Propagation
sc config CertPropSvc start= demand
REM Background Intelligent Transfer Service
sc config BITS start= delayed-auto
REM Computer Browser
sc config Browser start= demand
REM Windows Firewall
sc config MpsSvc start= auto
REM Base Filtering Engine
sc config BFE start= auto
REM Diagnostic Policy Service
sc config DPS start= auto
REM Distributed Link Tracking Client
sc config TrkWks start= auto
REM IP Helper
sc config iphlpsvc start= auto
REM Program Compatibility Assistant Service
sc config PcaSvc start= auto
REM Server
sc config LanmanServer start= auto
REM Windows Connection Manager
sc config Wcmsvc start= auto
REM Windows Management Instrumentation
sc config Winmgmt start= auto
REM Time Broker
sc config TimeBroker start= demand
REM Windows Image Acquisition (WIA)
sc config stisvc start= demand
REM Shell Hardware Detection
sc config ShellHWDetection start= auto
REM Superfetch (auto)
sc config SysMain start= auto
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment