我可以使用 MS Publisher 的自动化帮助我从 .pub 创建 .pdf 文件吗?
我找不到任何关于此的样本。
我可以使用 MS Publisher 的自动化帮助我从 .pub 创建 .pdf 文件吗?
我找不到任何关于此的样本。
下面是一个使用Microsoft Office 互操作程序集的简单示例。如果您安装了 Office,则无需安装可再发行组件。
Add-Type -AssemblyName Microsoft.Office.Interop.Publisher
$pubFile = 'C:\users\jscott\desktop\Publication1.pub'
$pdfFile = 'C:\users\jscott\desktop\Publication1.pdf'
$pubApp = New-Object Microsoft.Office.Interop.Publisher.ApplicationClass
$pubDoc = $pubApp.Open($pubFile)
# http://msdn.microsoft.com/en-us/library/office/ff939864.aspx
$pubDoc.ExportAsFixedFormat(
[Microsoft.Office.Interop.Publisher.PbFixedFormatType]::pbFixedFormatTypePDF,
$pdfFile
)
$pubDoc.Close()
$pubApp.Quit()