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

Set-OfficePowerPointNotes

Aliases: PptNotes
Namespace PSWriteOffice
Aliases
PptNotes
Inputs
OfficeIMO.PowerPoint.PowerPointSlide
Outputs
OfficeIMO.PowerPoint.PowerPointSlide

Sets speaker notes for a PowerPoint slide.

Remarks

Sets speaker notes for a PowerPoint slide.

Examples

Authored help example

Attach speaker notes.

PS>


New-OfficePowerPoint -Path .\Examples\Documents\PowerPointNotes.pptx {
                $slide = Add-OfficePowerPointSlide -Layout 1 -PassThru
                Set-OfficePowerPointSlideTitle -Slide $slide -Title 'Executive summary'
                Set-OfficePowerPointNotes -Slide $slide -Text 'Keep this slide under five minutes and focus on decisions.'
            }
        

Writes speaker notes to a generated 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

Set-OfficePowerPointNotes [-PassThru] [-Slide <PowerPointSlide>] -Text <String> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

PassThru SwitchParameter optionalposition: namedpipeline: False
Emit the object created or changed by the command.
Slide PowerPointSlide optionalposition: namedpipeline: True (ByValue)
Slide whose notes should be updated (optional inside DSL).
Text String requiredposition: 0pipeline: False
Notes text to apply.

Outputs

OfficeIMO.PowerPoint.PowerPointSlide