如何使用 Powershell 读取 pdf 自定义属性

如何使用 Powershell 读取 pdf 自定义属性

我正在尝试使用 PowerShell 脚本读取 PDF 文件的自定义文档属性。我可以读取 Microsoft 文档,但无法读取 PDF 元数据。非常感谢您的回复。

我可以通过 Powershell 读取如下所示的 docx 属性:

$application = New-Object -ComObject word.application
$application.Visible = $false
$document = $application.documents.open(“C:\test\Classified Document.docx”)
$binding = “System.Reflection.BindingFlags” -as [type]
$customProperties = $document.CustomDocumentProperties

但上述代码不适用于 PDF 文件。

相关内容