Difference between revisions of "Clear the Print Que by Force in Windows"

From Michael's Information Zone
Jump to navigation Jump to search
(Created page with "<ref>http://theitbros.com/windows-server-2008-print-job-stuck-in-queue/</ref> #Disable spooler service <source lang=ps> C:\net stop spooler </source> #Navigate to C:\Windows\S...")
 
 
Line 1: Line 1:
 
<ref>http://theitbros.com/windows-server-2008-print-job-stuck-in-queue/</ref>
 
<ref>http://theitbros.com/windows-server-2008-print-job-stuck-in-queue/</ref>
 
#Disable spooler service
 
#Disable spooler service
<source lang=ps>
+
<source lang="ps">
C:\net stop spooler
+
net stop spooler
 
</source>
 
</source>
 
#Navigate to C:\Windows\System32\spool\PRINTERS
 
#Navigate to C:\Windows\System32\spool\PRINTERS
 
#Delete all offenders without mercy! (When in doubt, delete them all!)
 
#Delete all offenders without mercy! (When in doubt, delete them all!)
 
#Start the spooler service
 
#Start the spooler service
<source lang=ps>
+
<source lang="ps">
C:\net start spooler
+
net start spooler
 
</source>
 
</source>

Latest revision as of 13:26, 22 April 2016

[1]

  1. Disable spooler service
net stop spooler
  1. Navigate to C:\Windows\System32\spool\PRINTERS
  2. Delete all offenders without mercy! (When in doubt, delete them all!)
  3. Start the spooler service
net start spooler