Your go-to resource for troubleshooting, templates, automation, and productivity in Word
File > Options > Add-ins
and launching in Safe Mode (Ctrl + Click
on Word icon).File > Info > Manage Document > Recover Unsaved Documents
.Ctrl + Space
or use Clear All Formatting
in the Home tab.$Word = New-Object -ComObject Word.Application
$Word.Visible = $true
$Doc = $Word.Documents.Add()
$Selection = $Word.Selection
$Selection.TypeText("Hello from PowerShell!")
$Doc = $Word.Documents.Open("C:\Path\To\File.docx")
$Doc.SaveAs("C:\Path\To\File.pdf", 17)
$Doc.Close()
$Word.Quit()
Styles
and Navigation Pane
for structured documents.Quick Parts
and Building Blocks
for reusable content.Office Scripts
in Word for the web: Office Scripts Docs