PowerShell 技能连载 - 打印 PDF 文件(第 1 部分)
如要自动打印 PDF 文档,不幸的是无法使用 Out-Printer
。Out-Printer
只能发送纯文本文档到打印机。
不过,请看一下代码:
1 | # adjust this path to the PDF document of choice |
假设您已经安装了可以打印 PDF 文档的软件,这段代码将会把文档发送到关联的程序并自动将它打印到缺省的打印机。
一些软件(例如 Acrobat Reader)执行完上述操作之后仍会驻留在内存里。可以考虑这种方法解决:
1 | # adjust this path to the PDF document of choice |
PowerShell 技能连载 - 打印 PDF 文件(第 1 部分)
http://blog.vichamp.com/2019/01/16/printing-pdf-files-part-1/