Ask Learn
Preview
Please sign in to use this experience.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Recently I had come across a situation in which customer wanted to remove the “Open with (Windows) Explorer” button from the Document Library’s Ribbon Menu.
Following are the steps to remove this button from Ribbon
<?xml version="1.0" encoding="utf-8"?> <Elements xmlns="https://schemas.microsoft.com/sharepoint/"> <CustomAction Id="RemoveRibbonButton" Location="CommandUI.Ribbon"> <CommandUIExtension> <CommandUIDefinitions> <CommandUIDefinition Location="Ribbon.Library.Actions.OpenWithExplorer" /> </CommandUIDefinitions> </CommandUIExtension> </CustomAction> </Elements>
Deploy the Solution and observe that “Open with Explorer” button will be removed from the Ribbon.
Please check out Default Server Ribbon Customization Locations for more location details.
Please sign in to use this experience.
Sign in