API Reference
Cmdlet
Protect-OfficeWordDocument
Protects a Word document with a password.
Remarks
Sets the protection password and the protection type (default: ReadOnly).
Examples
Example 1: Protect a generated document as read-only.
PS>
New-OfficeWord -Path .\ProtectedReport.docx {
Add-OfficeWordParagraph -Text 'Confidential report'
Protect-OfficeWordDocument -Password 'secret' -ProtectionType ReadOnly
}
Sets OfficeIMO.Word document protection while the document is being composed.
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
Protect-OfficeWordDocument [-Document <WordDocument>] [-PassThru] -Password <String> [-ProtectionType <DocumentProtectionValues>] [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- Document WordDocument
- Document to protect when provided explicitly.
- PassThru SwitchParameter
- Emit the protected document.
- Password String
- Password to apply.
- ProtectionType DocumentProtectionValues
- Protection type (defaults to ReadOnly).