Hi,
The control named UsagePermissions in the Word 2010 backstage is a button Control Type that displays the “Restrict Formatting and Editing” pane in Word 2010. The Policy
ID 9003 in the WordControls.xlsx is not a valid Group Policy TCID value to disable it.
However, in the WordControls.xlsx file, the Control Name “GroupPermissions” (a group Control Type) can be used inside some custom xml, to hide the Word 2010 > File
menu > Info > Protect Document icon in the Word backstage. (Please note that “GroupPermissions” Policy ID 19519 also is not a valid Group Policy TCID value.)
The following links will get you started in customizing the backstage:
Customizing the Backstage User Interface by Using Open XML Files
http://msdn.microsoft.com/en-us/library/ee691833(office.14).aspx#odc_Office2010Introduction2OutSpaceUI_CustomizingOutSpaceUserInterfaceUsingOpenXML
Customizing the Backstage View by Creating a Shared COM Add-In
http://msdn.microsoft.com/en-us/library/ee691833(office.14).aspx#odc_Office2010Introduction2OutSpaceUI_CustomizingOutSpaceUserInterfaceCOMAddIn
Here’s the xml syntax to add to a Word template or COM addin to hide the Protect Document icon in the Word 2010 backstage.
<customUI
xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<commands>
<command
idMso="GroupPermissions"
enabled="false"/>
</commands>
</customUI>
Please let us know if we’ve answered your questions by replying to this post.
Regards,
Bill Go - MSFT