PC Review


Reply
Thread Tools Rate Thread

How do I cancel printing?

 
 
Dom J
Guest
Posts: n/a
 
      15th Sep 2007
How do I cancel printing? Opening the checked printer in "Printers and
Faxes" doesn't show a thing. Clicking "Printers>Cancel all documents" from
there, doesn't do it. Please help.

Don J

--------------------------------------------------------------------------------


 
Reply With Quote
 
 
 
 
Lem
Guest
Posts: n/a
 
      15th Sep 2007
Dom J wrote:
> How do I cancel printing? Opening the checked printer in "Printers and
> Faxes" doesn't show a thing. Clicking "Printers>Cancel all documents" from
> there, doesn't do it. Please help.
>
> Don J
>
> --------------------------------------------------------------------------------
>
>


If there is nothing showing when you open the print queue, the print job
has already left the computer and is stored in the printer's memory
(generally, laser printers only). In this case, the only way you can
cancel the printing is from the printer itself, either by pressing a
"print cancel" button or turning off the printer power.

Inkjet printers generally don't have enough memory to store a large
print job, so you get an opportunity to cancel from the print queue.

--
Lem -- MS-MVP - Networking

To the moon and back with 64 Kbits of RAM and 512 Kbits of ROM.
http://en.wikipedia.org/wiki/Apollo_Guidance_Computer
 
Reply With Quote
 
Unknown
Guest
Posts: n/a
 
      15th Sep 2007
Have you tried right clicking on printer?
"Dom J" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> How do I cancel printing? Opening the checked printer in "Printers and
> Faxes" doesn't show a thing. Clicking "Printers>Cancel all documents"
> from there, doesn't do it. Please help.
>
> Don J
>
> --------------------------------------------------------------------------------
>
>



 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      15th Sep 2007

"Dom J" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> How do I cancel printing? Opening the checked printer in "Printers and
> Faxes" doesn't show a thing. Clicking "Printers>Cancel all documents"
> from there, doesn't do it. Please help.
>
> Don J
>
> --------------------------------------------------------------------------------


Here is what you can do:
- Click Start / Run / notepad.exe c:\Windows\purge.bat{OK}
- When prompted, say you want a new file.
- Copy & paste the lines below into this notepad.
- Save & close the file.
- Create a shortcut on your desktop that points to c:\windows\purge.bat.
- When you need to cancel a persistent job, do this:
1. Turn off the printer.
2. Double-click the shortcut you made a moment ago.
3. Turn on the printer.

@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


 
Reply With Quote
 
dobey
Guest
Posts: n/a
 
      16th Sep 2007

"Dom J" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> How do I cancel printing? Opening the checked printer in "Printers and
> Faxes" doesn't show a thing. Clicking "Printers>Cancel all documents"
> from there, doesn't do it. Please help.
>
> Don J
>
> --------------------------------------------------------------------------------
>
>


Normally when you cancel a print job it doesn't stop immediately.

I'm not an expert on this, but generally it seems there is a certain amount
of data spooled, so when you stop the print job you may get another half a
page printed before the printer stops.

I think it may depend on the amount of data a particular print job uses. So
for instance a full colour page may stop after half a page, but a text only
document might run for another page or more.

If it's convenient you can remove the paper from the printer to so the
machine will wait for the next page, then turn it of and cancel the printing
queue.

Given the cost of ink though you want the printer to stop as soon as you ask
it.


One annoying "feature" is when you allow some retarded person to use your
computer and they are too lazy to check if the printer is on. Hence they
decide they want to print something click the print button once, nothing
happens, so their solution is to click print 20 times.

Some time later you turn the printer on and it springs to life trying to
print out some website 20 times which is god knows how many pages long.


 
Reply With Quote
 
=?Utf-8?B?SVNrZWU=?=
Guest
Posts: n/a
 
      1st Nov 2007
My problem is that when I cancel the print job, the job list says "deleting"
and then everything just hangs up and doesn't delete. I have to shut down
everything and sometimes when I boot back up, it still is hung up or wants to
print that file.

"Pegasus (MVP)" wrote:

>
> "Dom J" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > How do I cancel printing? Opening the checked printer in "Printers and
> > Faxes" doesn't show a thing. Clicking "Printers>Cancel all documents"
> > from there, doesn't do it. Please help.
> >
> > Don J
> >
> > --------------------------------------------------------------------------------

>
> Here is what you can do:
> - Click Start / Run / notepad.exe c:\Windows\purge.bat{OK}
> - When prompted, say you want a new file.
> - Copy & paste the lines below into this notepad.
> - Save & close the file.
> - Create a shortcut on your desktop that points to c:\windows\purge.bat.
> - When you need to cancel a persistent job, do this:
> 1. Turn off the printer.
> 2. Double-click the shortcut you made a moment ago.
> 3. Turn on the printer.
>
> @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
>
>
>

 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      1st Nov 2007
And what happens when you run the batch file that
I recommended in this thread?


"ISkee" <(E-Mail Removed)> wrote in message
news:9ABE1D06-3FBB-405A-91C4-(E-Mail Removed)...
> My problem is that when I cancel the print job, the job list says
> "deleting"
> and then everything just hangs up and doesn't delete. I have to shut down
> everything and sometimes when I boot back up, it still is hung up or wants
> to
> print that file.
>
> "Pegasus (MVP)" wrote:
>
>>
>> "Dom J" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> > How do I cancel printing? Opening the checked printer in "Printers and
>> > Faxes" doesn't show a thing. Clicking "Printers>Cancel all documents"
>> > from there, doesn't do it. Please help.
>> >
>> > Don J
>> >
>> > --------------------------------------------------------------------------------

>>
>> Here is what you can do:
>> - Click Start / Run / notepad.exe c:\Windows\purge.bat{OK}
>> - When prompted, say you want a new file.
>> - Copy & paste the lines below into this notepad.
>> - Save & close the file.
>> - Create a shortcut on your desktop that points to c:\windows\purge.bat.
>> - When you need to cancel a persistent job, do this:
>> 1. Turn off the printer.
>> 2. Double-click the shortcut you made a moment ago.
>> 3. Turn on the printer.
>>
>> @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
>>
>>
>>



 
Reply With Quote
 
flaco144
Guest
Posts: n/a
 
      6th Dec 2007
thank pegasus the work great for me

"Pegasus (MVP)" wrote:

>
> "Dom J" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > How do I cancel printing? Opening the checked printer in "Printers and
> > Faxes" doesn't show a thing. Clicking "Printers>Cancel all documents"
> > from there, doesn't do it. Please help.
> >
> > Don J
> >
> > --------------------------------------------------------------------------------

>
> Here is what you can do:
> - Click Start / Run / notepad.exe c:\Windows\purge.bat{OK}
> - When prompted, say you want a new file.
> - Copy & paste the lines below into this notepad.
> - Save & close the file.
> - Create a shortcut on your desktop that points to c:\windows\purge.bat.
> - When you need to cancel a persistent job, do this:
> 1. Turn off the printer.
> 2. Double-click the shortcut you made a moment ago.
> 3. Turn on the printer.
>
> @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
>
>
>

 
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
cancel printing Sharon Brown Support 1 20th Dec 2010 08:55 PM
Cancel Printing W. Wolfe Windows XP Print / Fax 1 4th May 2009 06:29 AM
Cancel Printing John Microsoft Word Document Management 3 11th May 2004 05:58 PM
Can't cancel a printing job Jim Drake Windows XP Print / Fax 0 25th Dec 2003 03:55 PM
Cancel printing Cathy Windows XP Print / Fax 1 15th Sep 2003 07:55 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:18 AM.