How to print a .prn file

P

Pakeon

Hi,

I would like to know whether it is possible to print a .prn file out by
draggin to a printer icon?

Many thanks.

Pakeon
 
A

Alan Morris [MSFT]

no

use copy instead

If you have a USB printer, share it first, then copy the file to
\\machine\printershare

for LPT printer

copy filename lpt1

--
Alan Morris
Windows Printing Team
Search the Microsoft Knowledge Base here:
http://support.microsoft.com/search/?adv=1

This posting is provided "AS IS" with no warranties, and confers no rights.
 
P

Pakeon

Thanks but I want to find a simple way for end users to print those .prn
files. Such as to drag and drop the .prn files to a script then they can get
the print out.

Pakeon
 
K

Klaus Jorgensen

Pakeon wrote :
I would like to know whether it is possible to print a .prn file out by
draggin to a printer icon?

Create a batch-file with the text between the dashed lines below, and
save in e.g. "C:\Windows\SendLpt1.bat". Change "lpt" in the filename
and the script to whatever you setup is (as per Alan Morris' note).

To print files by dragging files to a print-icon on the desktop:
On the desktop, add a shortcut to the script you just created.

To print files by right-clicking and using the SendTo-option:
In "C:\Documents and Settings\{username}\SendTo", add a shortcut to the
script you just created.

-------------------------------------------
:loop
@echo Printing %1
@copy /b %1 lpt1 >nul
@shift
@if not !%1==! goto loop
 

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

Similar Threads

For print to file only option is *.prn 3
Printing files with PRN extension 1
*.prn files 1
How Do I Print a ".prn" file? 3
how to print PRN files 1
Printing PRN files 3
Printing .PRN files 2
Printing a Prn file 4

Top