Last active
April 21, 2026 05:44
-
-
Save gaelcolas/576e1d3e95ddfb2c02871c4cd71e304a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $word = New-Object -ComObject Word.Application | |
| $word.Visible = $false | |
| $word.Visible = $true | |
| $doc = $word.Documents.Open('C:\myDoc.docx') | |
| $find = $word.Selection.Find | |
| $word.Selection.HomeKey(6) # wdStory | |
| $find.Text = "{{NOM}}" | |
| $find.Replacement.Text = "COLAS" | |
| $find.Execute($find.Text, $false, $false, $false, $false, $false, $true, 1, $false, $find.Replacement.Text, 2) | |
| $find.Text = "{{PRENOM}}" | |
| $find.Replacement.Text = "Gaël" | |
| $find.Execute($find.Text, $false, $false, $false, $false, $false, $true, 1, $false, $find.Replacement.Text, 2) | |
| $outputPath = "C:\dev\final.docx" | |
| $doc.SaveAs([ref]$outputPath) | |
| $doc.PrintOut() | |
| $doc.Close() | |
| $word.Quit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment