How can I set the Default in Word 2203 to Unprotect.
It isn't clear to me what you mean.
- When you click the New Document button, is your blank document
protected? If so, can you unprotect it manually by clicking Tools >
Unprotect Document?
If you answered yes to both questions, you have somehow managed to
set your Normal.dot template to be protected. You need to open
Normal.dot itself, unprotect it, and save it.
If you answered yes to the first question and no to the second, you
may not have activated your copy of Word (try clicking Help > Activate
Product) or you may have an expired trial version.
- Or are you trying to open existing documents -- your own or ones
sent to you by other people -- that are properly protected for forms
or comments, but you want them to open unprotected?
If this is your problem, try creating this macro in Normal.dot:
Sub AutoOpen()
With ActiveDocument
If .ProtectionType <> wdNoProtection Then
.Unprotect
End If
End With
End Sub
If the protection was applied with a password, this macro will stop
with an error.