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-OfficePowerPointSlideSummary

Namespace PSWriteOffice
Inputs
OfficeIMO.PowerPoint.PowerPointSlide OfficeIMO.PowerPoint.PowerPointPresentation
Outputs
PSWriteOffice.Services.PowerPoint.PowerPointSlideSummaryInfo

Reads high-level slide summaries from a presentation.

Remarks

Returns title, notes metadata, layout metadata, and content counts for each slide.

Examples

Authored help example

Summarize a deck.

PS>


Get-OfficePowerPointSlideSummary -Presentation $ppt
        

Returns one summary object per slide.

Summarize one slide.

PS>


Get-OfficePowerPointSlide -Presentation $ppt -Index 0 | Get-OfficePowerPointSlideSummary
        

Returns the summary for the selected slide.

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-OfficePowerPointSlideSummary [-Slide <PowerPointSlide>] [<CommonParameters>]
#
Parameter set: Slide

Parameters

Slide PowerPointSlide optionalposition: namedpipeline: True (ByValue)
Slide to inspect (optional inside the DSL).

Outputs

PSWriteOffice.Services.PowerPoint.PowerPointSlideSummaryInfo: PowerShell-friendly summary of a PowerPoint slide.

Get-OfficePowerPointSlideSummary [-Index <Nullable`1>] [-Presentation <PowerPointPresentation>] [<CommonParameters>]
#
Parameter set: Presentation

Parameters

Index Nullable`1 optionalposition: namedpipeline: False
Optional zero-based slide index when reading from a presentation.
Presentation PowerPointPresentation optionalposition: namedpipeline: True (ByValue)
Presentation whose slides should be summarized.

Outputs

PSWriteOffice.Services.PowerPoint.PowerPointSlideSummaryInfo: PowerShell-friendly summary of a PowerPoint slide.