Skip to content

Instantly share code, notes, and snippets.

@yuchdev
Created August 7, 2022 18:19
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 yuchdev/1243e1eec58884f89b0a59de80bf9504 to your computer and use it in GitHub Desktop.
Save yuchdev/1243e1eec58884f89b0a59de80bf9504 to your computer and use it in GitHub Desktop.
Disable unnecessary Windows services
rem 1.
sc config "Name of Service" start= disabled
sc stop "Name of Service"
rem 2.
wmic service where name='SQLWriter' call ChangeStartmode Disabled
rem https://www.minitool.com/news/windows-10-services-to-disable.html
rem https://helpdeskgeek.com/windows-10/windows-10-unnecessary-services-you-can-disable-safely/
rem https://www.groovypost.com/howto/12-windows-10-services-that-are-safe-to-disable/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment