Skip to main content
OfficeIMO Docs Search documentation/

Update Existing PowerPoint Presentations

Edit on GitHub

Replace text and modify selected slides, shapes, tables, notes, themes, and layouts in an existing PPTX deck.

Targeted updates are useful for recurring decks where the design should remain stable while dates, labels, data, or speaker notes change.

Replace repeated text

Open the presentation, run Update-OfficePowerPointText, and close it with -Save. Use -IncludeNotes when the same term must change in speaker notes; table text is included by default and can be controlled explicitly.

$deck = Get-OfficePowerPoint -FilePath '.\FY24-Review.pptx'
Update-OfficePowerPointText -Presentation $deck `
    -OldValue FY24 -NewValue FY25 -IncludeNotes
Close-OfficePowerPoint -Presentation $deck -Save

Use targeted shape, table, notes, background, theme, layout, transition, and section commands when the change is structural. The update-existing recipe demonstrates the complete lifecycle.