I was more than a little surprised to hear the following from "marvo"
<marvo...@spamcop.net> in message
news:ekpGzD%237GH...@TK2MSFTNGP05.phx.gbl...
> Is there a way to clear the printer (HP) spooler queue other
> than rebooting the system a couple of times?
> Thanks in advance...marvo
>
>
Stop and restart the spooler service
--
Jon
Are you using a dedicated print server (computer), or are all workstations
printing directly to the printer's internal print server/jetdirect device as
a local printer? You can (usually) delete all items in the queue by opening
the printer object in your computer or on the print server machine's
printers applet.
You can restart the print spooler service - either in Services, or via a
command line -
net stop spooler <enter>
net start spooler <enter>
What's the reason you're having to do this with any frequency, btw?
@echo off
echo.
echo Purging the print queue . . .
net stop Spooler
echo Deleting all print jobs . . .
ping localhost -n 4 > nul
del /q %SystemRoot%\system32\spool\printers\*.*
net start Spooler
echo Done!
ping localhost -n 4 > nul
"marvo" <marvo...@spamcop.net> wrote in message
news:ekpGzD%237GH...@TK2MSFTNGP05.phx.gbl...