I have a Lexmark x83 all in one. Does some one have suggestions on how
I can delete this job?
Thanks,
Brett
Delete the contents of this folder.
C:\WINDOWS\System32\spool\PRINTERS
Good luck
Nepatsfan
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.
1. Click Start and then Control Panel.
2. Select Performance and Maintenance.
3. Select Administrative Tools.
4. Select Services.
5. Select Print Spooler to open the properties window.
6. Click Stop to stop the service. Once the service is stopped click
Start to restart the service.
7. Click OK to close the Print Spooler Properties window.
--
Dave
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".
"RajKohli" <RajK...@discussions.microsoft.com> wrote in message
news:CB3F52BE-5BBD-4819...@microsoft.com...
ping localhost -n 4 > nul
Before that I was using the Ping to just ping another computer. How this
command is surffing with Printer Spooler or anything else?
I was talking about Printer Icon in System Tray. It is still there after
removing the Print Jobs.
Once again a lot of thanks. Two of my friends just write down your batch
file and they will use it in their offices. Hope it will help them too.
Brett
?? - it's as if you didn't bother to read the original posting, even
though it's right above your post.
Brett
Oops. Somehow my brain filtered out that second sentence! Sorry 'bout
that...
> 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.
Cool! Thanks, Pegasus!
ping localhost -n x > nul
is frequently used in batch files to create a delay, as I mentioned
in my previous reply. It causes the batch file to pause for x-1
seconds before continuing. The >nul redirection ensures that the
screen won't get filled with lots of "Reply from" messages.
The printer applet in the system tray is probably still there because
it does not get refreshed after you run my batch file. This happens
because the batch file punches its way through things instead of
using standard system calls (which can easily take 10 or 20 minutes
to complete!).
"RajKohli" <RajK...@discussions.microsoft.com> wrote in message
news:78A77FED-F479-4F5B...@microsoft.com...
Thank you so much Pegasus for this wonderful .bat file. I've needed this for
years!
Thanks for the feedback.
Thank you Pegasus! This is a recurring problem for many (all?) people.
When there is such a simple, straightforward fix, why in the world has
MS never included it in XP?
Allen