Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.07 KB

2016-05-28-devices-and-printers-not-loading.md

File metadata and controls

37 lines (28 loc) · 1.07 KB
title date author layout classes permalink tags
Devices And Printers Not Loading
2016-05-28 06:34:00 +0000
gerryw1389
single
wide
/2016/05/devices-and-printers-not-loading/
Batch-Commands
Printing

Description:

When you run “control printers” the loading bar in Explorer will take a long time, and the Window will be blank indefinitely. This is almost always caused when Windows has an incorrect driver loaded for a printer.

To Resolve:

  1. Run => cmd- net stop spooler (This stops the printer spooler service)

  2. Go to C:\windows\system32\spool\PRINTERS and C:\Windows\System32\spool\DRIVERS and delete any files there.

  3. Run => cmd- net start spooler (This starts the printer spooler service)

  4. Install only printers that you know the driver is correct for, remove any older printers if not in use.

  5. Batch File - Make a batch file from this:

    net stop spooler
    del %systemroot%\system32\spool\printers\*.shd
    del %systemroot%\system32\spool\printers\*.spl
    net start spooler