Skip to content

Instantly share code, notes, and snippets.

@gaelcolas
Last active April 21, 2026 05:44
Show Gist options
  • Select an option

  • Save gaelcolas/576e1d3e95ddfb2c02871c4cd71e304a to your computer and use it in GitHub Desktop.

Select an option

Save gaelcolas/576e1d3e95ddfb2c02871c4cd71e304a to your computer and use it in GitHub Desktop.
$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