Summary: Learn to troubleshoot a Windows PowerShell script for Microsoft Word automation.
I have been struggling with a Windows PowerShell script that automates Word. Every time I run the script, I get an
error message that says the Word document is locked. What can I do?
When you test or develop your Windows PowerShell script for Word automation, make sure that you quit the
Word.Application object and close the Word document. Otherwise, the document will be locked. This is
especially true if you set the Application.Visible property to $false.
0 comments