Search code examples
ms-officepowerpointribbonoffice-automation

How do I disable/remove menu item "PowerPoint Options" in PowerPoint 2007?


I'm trying to lock down PowerPoint and I can get rid of some of the commands by using some ribbon-customization xml and group policies. But I need to remove or disable two more options.

PowerPoint Options - This button shows when you click on the Office icon

This item is also available in Word (Word Options) and Excel (Excel Options), so it should be the same solution.

In Office 2003 I could remove any item I wanted by deleting objects from _pptApplication.CommandBars.

Update: I can now disable Quick Access Toolbar with group policies. But I could not find anything there for "PowerPoint Options".

Thanks


Solution

  • It can be disabled (not hidden) in PowerPoint/Office 2007 with some customUI-xml and the id "ApplicationOptionsDialog"; see http://excelusergroup.org/blogs/nickhodge/archive/2008/02/03/ribbon-step-by-step-part-3-the-office-menu-and-re-purposing.aspx

    <?xml version="1.0" encoding="utf-8"?>
    <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
        <commands>
            <command idMso="ApplicationOptionsDialog" enabled="false"/>
        </commands>
    </customUI>
    

    In PowerPoint/Office 2010 it can also be hidden; see http://www.rondebruin.nl/backstage.htm

    <?xml version="1.0" encoding="utf-8"?>
    <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
        <commands>
            <command idMso="ApplicationOptionsDialog" enabled="false"/>
        </commands>
        <backstage>
            <button idMso="ApplicationOptionsDialog" visible="false"/>
        </backstage>
    </customUI>