Skip to content

Instantly share code, notes, and snippets.

@johnnymatthews
Last active July 7, 2021 17:22
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 johnnymatthews/2b56bcbfec3adc7dd7780c74702aac49 to your computer and use it in GitHub Desktop.
Save johnnymatthews/2b56bcbfec3adc7dd7780c74702aac49 to your computer and use it in GitHub Desktop.
Disable and re-enable the print spooler on Windows 10.
REM "Disable the print spooler"
net stop spooler && sc config spooler start=disabled
REM "Enable the print spooler"
sc config spooler start=auto && net start spooler
REM "I actually have no idea what a _spooler_ is..."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment