In the DOS command prompt, create a batch file and type the following code:
For /R %CD% %%I in (*.PRN) do (
@echo printing %%I
LPR -S 192.168.1.100 -P raw %%I
)
The 192.168.1.100 is your network printer's IP address. It should be changed accordingly.
This program reads all *.PRN and print them to the specified IP printer.
No comments:
Post a Comment