Connect LPT printer to serial port

comlptprinter

I have a printer with LPT port and it needs to be connected to serial COM1 port via adapter. Printer output is being rerouted to serial port COM1 with a command:

mode LPT1=COM1
mode COM1: 9600,n,8,1

and nothing is comming out. Is this possible to accomplish like on this picture in a link below?
LPT to serial adapter picture

enter image description here

Best Answer

It is probably not a LPT to serial adapter. Serial port has 2 types of pinouts, of which the 25 pinout is practically the same as parallel port pinout, so you have probably only serial-serial connector instead of parallel to serial adapter. See also this answer.

The parallel printer can be connected to PC with USB cable that is called something like USB to Centronics Printer Cable.

For using the printer form DOS (under Windows) as LPT1 see this answer.

Related Question