Powershell生成PDF

时间:2014-04-01 08:38:27

标签: pdf powershell

我需要通过Powershell脚本生成许多PDF文件。我试着用:

"Hello, World" | out-printer -name "PDFCreator"

好主意,但确认对话框GUI显示。

我尝试了这个tutorial并在线:

$ReportOutput = $PdfCreator.GeneratePdf([string]$HTML)

得到了这个错误:

Exception calling "GeneratePdf" with "1" argument(s): "Cannot generate PDF: "
At C:\temp\pdf.ps1:12 char:40
+ $ReportOutput = $PdfCreator.GeneratePdf <<<< ([string]$HTML)
   + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
   + FullyQualifiedErrorId : DotNetMethodException

整个source code,我在教程中尝试过。

0 个答案:

没有答案