Created
August 7, 2022 18:19
-
-
Save yuchdev/1243e1eec58884f89b0a59de80bf9504 to your computer and use it in GitHub Desktop.
Disable unnecessary Windows services
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
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