Created
August 2, 2019 13:44
-
-
Save andrewconnell/ab0df3fab4b4e8563723148fdb456ee8 to your computer and use it in GitHub Desktop.
This file contains 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
@echo off | |
@echo -- Stopping unnecessary services for optimal VPC speed | |
@echo | |
@echo -- ... Stopping "Help and Support" service | |
net stop "Help and Support" | |
@echo -- ... Stopping "Print Spooler" service | |
net stop "Print Spooler" | |
@echo -- ... Stopping "Error Reporting Service" service | |
net stop "Error Reporting Service" | |
@echo -- ... Stopping "Task Scheduler" service | |
net stop "Task Scheduler" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment