PC Review


Reply
Thread Tools Rating: Thread Rating: 5 votes, 5.00 average.

can't delete printer, print job, or clear spooler folder

 
 
tai
Guest
Posts: n/a
 
      10th Jul 2003
I have a document stuck waiting to be printed and
blocking up all future prints. It's a 93mb Coreldraw
file and when I try to delete it from the printer toolbar
the status just changes to deleting and never does.
Consequently I can't delete and reinstall the printer or
clear the spooler folder... Any ideas anyone. Thanks in
advance.
Aloha,
Tai
 
Reply With Quote
 
 
 
 
Bruce Sanderson
Guest
Posts: n/a
 
      11th Jul 2003
In a Command Prompt window, key the command net stop spooler

In Windows Explorer, navigate to %systemroot%\system32\spool (usually
c:\windows\...) and delete the .shd and .spl files you find there, but do
not delete the sub-folders.

In a Command Prompt window, key the command net start spooler


--
Bruce Sanderson MVP

It's perfectly useless to know the right answer to the wrong question.


"tai" <(E-Mail Removed)> wrote in message
news:022901c34720$3d9f1ff0$(E-Mail Removed)...
> I have a document stuck waiting to be printed and
> blocking up all future prints. It's a 93mb Coreldraw
> file and when I try to delete it from the printer toolbar
> the status just changes to deleting and never does.
> Consequently I can't delete and reinstall the printer or
> clear the spooler folder... Any ideas anyone. Thanks in
> advance.
> Aloha,
> Tai



 
Reply With Quote
 
 
 
 
Ed Nazarko
Guest
Posts: n/a
 
      16th Jul 2003
Sadly, I've found 30 similar messages just in 5 minutes
of searching the last couple weeks of posts - I'm looking
for the same answer... The only solution I've found is
to turn off the printer, turn off the computer, turn on
the computer; the document will reappear in the spooler
window. if you try to delete it now, it will delete
instantly. Then you can turn on the printer, and print
again... until it locks up again.

?????And you find this to be a problem????? Or at least
that was the tone of voice I heard when I paid to talk to
someone at Microsoft support...

Grrrr.

>-----Original Message-----
>I have a document stuck waiting to be printed and
>blocking up all future prints. It's a 93mb Coreldraw
>file and when I try to delete it from the printer

toolbar
>the status just changes to deleting and never does.
>Consequently I can't delete and reinstall the printer or
>clear the spooler folder... Any ideas anyone. Thanks

in
>advance.
>Aloha,
>Tai
>.
>

 
Reply With Quote
 
New Member
Join Date: Apr 2006
Posts: 1
 
      25th Apr 2006
Quote:
Originally Posted by Bruce Sanderson
In a Command Prompt window, key the command net stop spooler

In Windows Explorer, navigate to %systemroot%\system32\spool (usually
c:\windows\...) and delete the .shd and .spl files you find there, but do
not delete the sub-folders.

In a Command Prompt window, key the command net start spooler


--
Bruce Sanderson MVP

It's perfectly useless to know the right answer to the wrong question.


"tai" <(E-Mail Removed)> wrote in message
news:022901c34720$3d9f1ff0$(E-Mail Removed)...
> I have a document stuck waiting to be printed and
> blocking up all future prints. It's a 93mb Coreldraw
> file and when I try to delete it from the printer toolbar
> the status just changes to deleting and never does.
> Consequently I can't delete and reinstall the printer or
> clear the spooler folder... Any ideas anyone. Thanks in
> advance.
> Aloha,
> Tai
Just wanted to say, great piece of advixe. I had forgotten about the NET command.
 
Reply With Quote
 
New Member
Join Date: Dec 2006
Location: leicestershire
Posts: 1
 
      18th Dec 2006
Bruce, can i just say what an absolute star you are, i was having a mare with a network printer document that simply wouldnt delete no matter where i tried to delete it from, and despite stopping the print spooler/ restarting it many times- it was having none of it and consequently causing my desktop to run very slowly unless i switched the print spooler off, but i followed your instructions re deleting the .shd file and ' voila' - that moment that we all live for when it finally works!Once again many thanks- hours of grief over!
 
Reply With Quote
 
New Member
Join Date: Mar 2007
Posts: 1
 
      21st Mar 2007
Hi there I have the same problem on my pc (xp and epson printer) but i cannot find the command area etc i have managed to find the .shd and .spl files and tried to delete them but it said that they were already being used and wouldn't let me. its such a pain as i have to reboot about 6 times a day... please can you help me find the right areas!

thanks victoria
 
Reply With Quote
 
New Member
Join Date: Apr 2007
Posts: 2
 
      12th Apr 2007
A while ago I suffered also with the same problem on a few local machines and one time on a printerver.

I've created a batchfile that will stop the spoolerservice, delete all existing SPL and SHP files, then restart the spoolerservice (If you are not authorised to run this batchfile, you will see some errors. This is because you need Administrator rights to run this kind of batchfile. Contact your local Administrator if needed):

@echo off
cls
net stop spooler
del %systemroot%\system32\spool\*.spl
del %systemroot%\system32\spool\*.shd

net start spooler

Do not use this solution unless you are sure that nobody is printing (when you have a printerserver) because ALL pending print-requests will be deleted without warning.

I've also made another batchfile that will delete ALL *.spl and *.shd on the c:\ drive. Use this one only when you are sure that you have no other files with a *.spl and/or *.shd extention:


@echo off
cls
net stop spooler
del c:\*.spl /s /q
del c:\*.shd /s /q
net start spooler
 
Reply With Quote
 
New Member
Join Date: Aug 2007
Posts: 1
 
      1st Aug 2007
[QUOTE=t1janpr33]
I've created a batchfile that will stop the spoolerservice, delete all existing SPL and SHP files, then restart the spoolerservice
.........................................................................................

Great post and very useful batch file! thanks t1janpr33!

I needed to use it so often that I made an icon on my desktop for it.
Here's how that is done, in case someone need to know...

Copy t1janpr33's code and make a batch file with it like this..

Select this following code with your mouse:

@echo off
cls
net stop spooler
del %systemroot%\system32\spool\*.spl
del %systemroot%\system32\spool\*.shd

net start spooler

Press CTRL C to copy it to your clipboard

Open notepad
Paste that code into notepad with CTRL V

Click on File-->Save As
Change the type of file from txt to "All Files"
Give it a file name like "Cancel Print jobs.bat"
Save it to a location that you will remember. I saved mine to C:\
(the root directory of the C drive). Don't save it to your desktop because you can't change the icon for it if you do.

Go to your desktop view
Right click on the desktop and chose NEW-->Shortcut
Click on the browse button and locate your file "Cancel Print Jobs.bat" in the root directory of drive C (or wherever you put it).
Click NEXT
I changed the shortcut name to Cancel Print jobs (left off the .bat part)
Now find the new icon on your desktop and right click it
Click on "Properties"
click on "Change Icon"
Select a printer icon

That's it. Thanks again to t1janpr33 for providing the very useful batch file code.

tralfaz
 
Reply With Quote
 
New Member
Join Date: Jan 2008
Posts: 1
 
      25th Jan 2008
I was having problems with my CPU running on 100%, so I kept digging and asking questions and found out it was the printing spool. I tried to delete, but that was happening, until I discovered your wonderful words of advice. My computer is up and going again, thanks to your batch file. Much appreciated.


Quote:
Originally Posted by t1janpr33
A while ago I suffered also with the same problem on a few local machines and one time on a printerver.

I've created a batchfile that will stop the spoolerservice, delete all existing SPL and SHP files, then restart the spoolerservice (If you are not authorised to run this batchfile, you will see some errors. This is because you need Administrator rights to run this kind of batchfile. Contact your local Administrator if needed):

@echo off
cls
net stop spooler
del %systemroot%\system32\spool\*.spl
del %systemroot%\system32\spool\*.shd

net start spooler

Do not use this solution unless you are sure that nobody is printing (when you have a printerserver) because ALL pending print-requests will be deleted without warning.

I've also made another batchfile that will delete ALL *.spl and *.shd on the c:\ drive. Use this one only when you are sure that you have no other files with a *.spl and/or *.shd extention:


@echo off
cls
net stop spooler
del c:\*.spl /s /q
del c:\*.shd /s /q
net start spooler
 
Reply With Quote
 
New Member
Join Date: Jan 2011
Posts: 1
 
      7th Jan 2011
Thank you, thank you, thank you! My printer would not cancel the original print job and was just hung up. I need it desperately for important print jobs and could not get one of them deleted so it would not print anything new. None of the other solutions anyone offered worked. Finally happened onto this forum, your solution worked. I can't thank you enough!
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Print Spooler Not Found and Spooler Not Running Errors Twoee Windows XP General 0 20th Jan 2008 06:57 PM
Print Spooler won't clear when using Print Server RBF Windows XP Print / Fax 0 16th Jun 2005 09:11 PM
Is it Possible: Watch print spooler--if print appears, extract print data as file to disk and delete from spooler RDI Microsoft VB .NET 0 7th Apr 2004 09:38 PM
clear history, not "Clear History" or "Clear Forms" or TypedURLS Nick Windows XP Internet Explorer 4 31st Mar 2004 05:22 AM
spooler won't clear after print job is finished Kevi Stibitz Windows XP Print / Fax 0 15th Aug 2003 04:15 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:52 AM.