API Reference
Get-OfficePowerPointSlideSummary
Reads high-level slide summaries from a presentation.
Remarks
Returns title, notes metadata, layout metadata, and content counts for each slide.
Examples
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>]
#
SlideParameters
- Slide PowerPointSlide
- 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>]
#
PresentationParameters
- Index Nullable`1
- Optional zero-based slide index when reading from a presentation.
- Presentation PowerPointPresentation
- Presentation whose slides should be summarized.
Outputs
PSWriteOffice.Services.PowerPoint.PowerPointSlideSummaryInfo: PowerShell-friendly summary of a PowerPoint slide.