setup LPT1 printer

N

News

I have a very basic dos style program that can only print to LPT1. I don't
have a parallel printer only a USB one that is accesses over a network. Not
a complex network, no server just everyone hooked into a hub and one of the
computers has a plotter and one has a printer. How do I set up something to
print to the printer which is USB on the network
 
P

Pegasus \(MVP\)

News said:
I have a very basic dos style program that can only print to LPT1. I don't
have a parallel printer only a USB one that is accesses over a network. Not
a complex network, no server just everyone hooked into a hub and one of the
computers has a plotter and one has a printer. How do I set up something to
print to the printer which is USB on the network

Share your printer, then run this command from a Command prompt:

net use LPT1: \\%ComputerName%\SharedPrinter

where "SharedPrinter" is the share name of your printer.

Whether this USB printer understands the code sent by the DOS
program is another question. I suspect that it won't.
 
S

Shenan Stanley

News said:
I have a very basic dos style program that can only print to LPT1.
I don't have a parallel printer only a USB one that is accesses
over a network. Not a complex network, no server just everyone
hooked into a hub and one of the computers has a plotter and one
has a printer. How do I set up something to print to the printer
which is USB on the network

This help?
http://geekswithblogs.net/dtotzke/articles/26204.aspx
 
N

News

Sorry I didn't make myself clear enough.
The program just has a print option i.e. press F5 to print results but it
defaults as the LPT1.

So I need to be able to press the print button and have it send to LPT1 but
LPT1 actually send it to the USB on another computer on the network
 
P

Pegasus \(MVP\)

You made yourself perfectly clear and my answer still applies.
Share the printer, then run the command I gave you. If you wish
to automate the process than you can create this batch file:

c:\documents and settings\all users\start menu\programs\startup\netlogon.bat

and put these lines inside:

@echo off
net use LPT1: \\%ComputerName%\SharedPrinter
 
B

Bob I

Simply replace the "%ComputerName%" in Pegasus's instructions, with the
remote computer's name.
 

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