如何使用Powershell以pdf格式保存任何Powershell脚本的输出?

时间:2018-11-05 11:33:57

标签: powershell

代替:

Get-ChildItem -Path C:\ -Force | ConvertTo-Html -Body "<H2>C Drive Details</H2>" >> $OutFile

我希望以pdf格式输出而不是html

1 个答案:

答案 0 :(得分:0)

如果您访问此网站http://www.powertheshell.com/modules/

您可以下载PDFTools模块并将其内容提取到模块路径,然后Import-Module PDFTools,这将为您提供一个新命令Out-PTSPDF,您可以将结果传递给该命令。

@JamesC是正确的,没有“本机”方式可以完成此操作。