Project

PSWriteOffice

PowerShell document automation across Word, Excel, PowerPoint, PDF, Reader, Confluence, Visio, and open text formats.

Stars 159
Forks 14
PowerShell Gallery downloads 158,661
Release v3.0.5
Language: C# Updated: 2026-09-03

API Reference

Cmdlet

Get-OfficeWord

Opens an existing Word document.

Remarks

Returns an OfficeIMO WordDocument for inspection, advanced operations, or optional DSL edits.

Examples

Authored help example

Load a document in read-only mode.

PS>


$doc = Get-OfficeWord -Path .\Report.docx -ReadOnly
        

Loads Report.docx and exposes the document object for querying.

Run the Word DSL against an existing document.

PS>


$doc = Get-OfficeWord -Path .\Report.docx { WordParagraph -Text 'Appended by DSL' }; $doc | Save-OfficeWord
        

Loads the document, appends content through the DSL, and returns the open document for saving or further edits.

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-OfficeWord [-Content <ScriptBlock>] [-Password <String>] -Path <String> [-ReadOnly] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Content ScriptBlock optionalposition: 1pipeline: False
Optional DSL scriptblock to execute against the loaded document.
Password String optionalposition: namedpipeline: False
Password used to open an encrypted document package.
Path String requiredposition: 0pipeline: Falsealiases: FilePath, InputPath
Path to the .docx. Accepts PS paths.
ReadOnly SwitchParameter optionalposition: namedpipeline: False
Open in read-only mode.