命令行大全

print

秃噜豆儿 发表于 2020-06-24 14:19浏览次数:

print命令允许用户在后台将文本文件打印到打印机。

如果需要打印无法从命令行打开的文件(电子邮件,图片,文档等),则必须使用其他程序。

If you need to print a file that cannot be opened from a command line (e-mail, picture, document, etc.) you must use a different program.

查看英文版

目录:

1 print 运行系统环境

2 print 语法

3 print 示例

print 运行系统环境

Windows 95

Windows 98

Windows xp

Windows vista

Windows 2000

Windows 7

Windows 8

Windows 10

Windows NT

Windows ME

print 语法

Windows Vista和更高版本的语法
PRINT [/D:device] [[drive:][path]file name[...]]
/D:device 指定打印设备。
Windows XP和更早的语法
print /d:device /b:size /u:ticks1 /m:ticks2 /s:ticks3 /q:size /t drive:\path\ file name /c /p

选项:

/d:device 打印机设备的名称。
打印机端口:LPT1,LPT2或LPT3。
串行端口: COM1,COM2,COM3或COM4。
/b:size 设置内部缓冲区的大小(以字节为单位)。默认值= 512,范围为512到16384。
/u:ticks1 PRINT的最大时钟刻度数,以等待打印机可用。默认值= 1,范围为1到255。
/m:ticks2 PRINT可以打印字符的最大时钟滴答数。默认值= 2,范围为1到255。
/s:ticks3 分配给后台打印的最大时钟滴答数。默认值= 8,范围为1到255。
/q:qsize 打印队列中允许的最大文件数。默认值= 10,范围为1到255。
/t 从打印队列中删除文件。
drive:\path\ file name 要打印文件的位置和文件名。
/c 从打印队列中删除文件。
/p 将文件添加到打印队列。
Windows Vista and later syntax
PRINT [/D:device] [[drive:][path]file name[...]]
/D:device Specifies a print device.
Windows XP and earlier syntax
print /d:device /b:size /u:ticks1 /m:ticks2 /s:ticks3 /q:size /t drive:\path\ file name /c /p

Options:

/d:device Name of the printer device.
Printer Ports: LPT1, LPT2 or LPT3.
Serial Ports: COM1, COM2, COM3 or COM4.
/b:size Sets size (in bytes) of the internal buffer. Default=512 with a range of 512 to 16384.
/u:ticks1 Maximum number of clock ticks PRINT is to wait for a printer to become available. Default=1 with a range of 1 to 255.
/m:ticks2 Maximum number of clock ticks PRINT can take to print a character. Default=2 with a range of 1 to 255.
/s:ticks3 Maximum number of clock ticks allocated for background printing. Default=8 with a range of 1 to 255.
/q:qsize Maximum number of files allowed in print queue. Default=10 with a range of 1 to 255.
/t Removes files from the print queue.
drive:\path\ file name Location and file name of the file to be printed.
/c Removes files from the print queue.
/p Adds files to the print queue.

查看英文版

查看中文版

print 示例

print c:\file.txt /c /d:lpt1
将file.txt文件输出到并行端口lpt1。
print c:\file.txt /c /d:lpt1
Prints the file.txt file to the parallel port lpt1.

打印命令只能打印ASCII文本。/ d,/ b,/ u,/ m,/ s和/ q 开关只能使用一次。如果需要其他值,则必须重新启动计算机。

The print command is only able to print ASCII text. The /d, /b, /u, /m, /s, and /q switches can only be used once. If you require a different value, the computer must be restarted.

查看英文版

查看中文版