Thanks for this update. I have also asked this many times but nobody gives an
accurate answer. Even the people around me were searching for a solution.
About the Batch file. I think you did a little trick.
First of all you stop the Printer Spooler service.
Then Delete all pending print jobs.
Then again Restarted the Printer Spooler service.
Will you explain the batch commands with us? Secondly, the Printer Icon is
still there. Can it also be removed, if empty?
Once again thanks a lot.
With Regards
Rajiv Kohli
--
If you found this post helpful then "Rate this Post".
"Pegasus (MVP)" wrote:
>
> "brett" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > I have a print job in the print queue with a "deleting..." status. It
> > won't go away and is holding up other jobs. I've restarted the Print
> > Spooler service but that didn't help. Turning the printer off/on
> > didn't help either.
> >
> > I have a Lexmark x83 all in one. Does some one have suggestions on how
> > I can delete this job?
> >
> > Thanks,
> > Brett
> >
>
> Do this:
> - Click Start / Run / notepad c:\Windows\purge.bat{Enter}
> - Paste these lines into the notepad file:
> @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
> - Save & close the file.
> - Create a shortcut on the desktop to invoke c:\windows\purge.bat.
>
> Whenever you need to delete a print job that you cannot delete
> via the Control Panel, double-click this shortcut.
>
>
>
|