Printer problem

P

PVR

Recently I did something wrong with my Canon P4200 printer (Two
commands to print the same document before one had started to print).
The result was I have a box on the taskbar which reads in part "Port
LK781614_P1 Register Re..." Apparently I have a print job waiting but
I don't. I have switched off the printer and rebooted the PC but the
box keeps reappearing and the printer will not print.

Anyone know how I can remove or by-pass this so that I can use my
printer again?

Many thanks,

Peter.
 
E

Elmo

PVR said:
Recently I did something wrong with my Canon P4200 printer (Two
commands to print the same document before one had started to print).
The result was I have a box on the taskbar which reads in part "Port
LK781614_P1 Register Re..." Apparently I have a print job waiting but
I don't. I have switched off the printer and rebooted the PC but the
box keeps reappearing and the printer will not print.

Anyone know how I can remove or by-pass this so that I can use my
printer again?

Many thanks,

Peter.

Create a batch file with the following lines, or just copy/paste the
five pertinent lines into a command line:

@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
 
P

PVR

Many thanks for your response. I tried your suggestion before going to
Elmo's. I could not make your suggestions work and Elmo's batch file did.
But I thought your idea was less dangerous (for me) so I used it first.

Again, many thanks,

Peter

J. P. Gilliver (John) said:
Windows does remember the printer queue through a reboot. I presume
opening the printer box for the specific printer (via Start, Settings,
Printers - this sequence may vary depending which start menu you've got
set up) doesn't show any entries? (If it does, try selecting them and then
selecting delete - I think it's under edit.) Failing that, Elmo's
suggestion as below ...
[]
Create a batch file with the following lines, or just copy/paste the
five pertinent lines into a command line:

@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
What do the ping lines do?
--
J. P. Gilliver. UMRA: 1960/<1985 MB++G.5AL-IS-P--Ch++(p)Ar@T0H+Sh0!:`)DNAf
** http://www.soft255.demon.co.uk/G6JPG-PC/JPGminPC.htm for ludicrously
outdated thoughts on PCs. **

"It ain't those parts of the Bible that I can't understand that bother me,
it's
the part that I do understand." - Mark Twain
 
E

Elmo

PVR said:
Many thanks. Your batch file appears to ha worked.

Peter.

That's great. Thanks for reporting back. The batch file actually came
from some of the regulars in this group.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top