Evotec

Project

PSWriteOffice

PSWriteOffice is an open-source PowerShell and .NET project with packages, release history, and technical documentation.

Stars 144
Forks 12
Open issues 16
PowerShell Gallery downloads 150,904
Release v0.2.0
Language: C# Updated: 2026-04-06

API Reference

Cmdlet

Get-OfficePowerPoint

Namespace PSWriteOffice
Inputs
None
Outputs
System.Object

Loads an existing PowerPoint presentation.

Remarks

Returns an OfficeIMO PowerPointPresentation for downstream slide operations.

Examples

Authored help example

Open a deck for editing.

PS>


$ppt = Get-OfficePowerPoint -FilePath .\Quarterly.pptx
        

Reads Quarterly.pptx and exposes the presentation object.

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-OfficePowerPoint -FilePath <String> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

FilePath String requiredposition: namedpipeline: False
Path to the .pptx file.

Outputs

System.Object