API Reference

Cmdlet

Get-OfficePdfSignature

Namespace PSWriteOffice
Inputs
System.String
Outputs
OfficeIMO.Pdf.PdfSignatureValidationReport

Gets lightweight PDF signature structure and preservation validation.

Remarks

Reports signature fields, byte-range structure, DocMDP permissions, DSS/LTV evidence, and append-only preservation markers. Certificate-chain trust, revocation, digest, and CMS cryptographic verification are intentionally not performed.

Examples

Authored help example

Inspect signatures before preserving or migrating a PDF.

PS>


$report = Get-OfficePdfSignature -Path .\Signed.pdf
            $report.Signatures
            $report.Findings
        

Reads signature structure and reports whether OfficeIMO.Pdf found structural issues.

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

Get-OfficePdfSignature [-Password <String>] -Path <String> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Password String optionalposition: namedpipeline: False
Password used to inspect a Standard password-encrypted PDF.
Path String requiredposition: 0pipeline: True (ByValue)aliases: FilePath
PDF file path.

Outputs

OfficeIMO.Pdf.PdfSignatureValidationReport