I am regularly inspecting spec docs I get from a different team. Their docs are periodically revised and they keep tracks of the changes. Whenever I open a doc, it is displayed in "Final: Show Markup" view mode. So, first thing I do is to get to the "Review" tab and change to "Final". Is there a way to configure Word to always open a doc in "Final" view mode (w/o altering the document itself)?
You can achieve this using an AutoOpen macro, which is a macro that runs whenever you open a document.
Sub AutoOpen() If Application.ActiveProtectedViewWindow Is Nothing Then With ActiveWindow.View .ShowRevisionsAndComments = False .RevisionsView = wdRevisionsViewFinal End With End If End Sub
The macro is stored in the Normal template and runs when you open a document. So now, whenever you open a document it will switch to Final view. The AutoOpen macro doesn't get embedded in documents you create or edit so you can share them with others.
Note that the AutoOpen() macro will not work on documents opened in Protected View, like email attachments from the internet etc.
Important
To prevent potential security issues and the embarrassment of accidentally exposing internal comments and previous edits, you may want to configure word as follows: