Hi John,
i am so sorry. I am in a difficult situation, and did not realize that
many such as you frequent several usenet groups. I can see that this
has been confusing. I will limit my conversations with you here. I
did run the preceeding batch file from the command line, with no
success, as well as the NET STOP SPOOLER commands. I got a replay that
said that the *.spl and *.shd paths could not be found? I suspect this
means that they were already deleted. Wierd thing is that when I go to
reinstall the driver, it says it still exists and I think I have done
everything. Apparently not. The other wierd thing is that the computer
does not auto detect any printers I have connected, even as printers???
Any help would be appreciated. I guess I could reinstall the OS as I
only use the computer for this one program, but I don't really know what
I am doing on the PC side. I do not know if installing will wipe
everything, so that the current problem goes away! The only thing I have
not done is connected the printer to another computer as this is not
accessible to me. But I did run a self-test on it which does fine. The
only remote possibility is a problem with the interface connection on
the printer? But why the OS has difficulty recognizing printers
suggested that it is an OS and not printer problem. Thanks for all of
your help. I have what amounts to level 4 tech support knowledge on the
Mac side, but on the PC side, I am an abject dufus! If you can be of
any further help, please please do so.
There are two issues here: The one about multi-posting and the
one about printing. Let's deal with multi-posting first.
Assume that there are three newsgroups called A, B and C.
Let's have three contributors: Alf replies to questions in group A,
Bob deals with problems posted in B and Charlie answers
questions in C. Now along comes Roback, posting his question
independently in each of the three groups. Alf, Bob and Charlie
are in a helpful mood so they all sit down and spend time answering
Roback's question. Alf can't see what Bob or Charlie have written
and vice versa, so they all spend time solving your problem. They
all re-invent the wheel. What a waste of time!
This is what happens when you multipost. It's a bad habit that
gets you very unpopular with respondents, for obvious reasons.
However, if you had crossposted your question then Alf, Bob and
Charlie would see the replies from the other groups. They might
let it go or they might make further contributions. This is why
multiposting is bad and crossposting is good (if used in moderation) -
see here:
http://www.blakjak.demon.co.uk/mul_crss.htm
Now about your printing problem: If you run this batch 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
and if it reports "file not found" then there is something wrong
with your folder structure, i.e. the folder
%SystemRoot%\system32\spool\printers
does not exist. You need to explore this further: Using
Windows Explorer, follow the full path shown above and see
how far you get. If you get into the "printers" subfolder, find
out what files are there. If there are some, stop the Spooler
service and delete these files.
In other words, you need to do manually what the batch file
does automatically. In this way you can find out exactly what's
going on and at which stage the process fails.