SharePoint Online: How to Enable “View in File Explorer” in Microsoft Edge?
Requirement: Configure view in file explorer feature with Edge browser.
How to configure the “View in File Explorer” Feature in Edge?
As Internet Explorer is discontinued from Windows 11, We may be missing the nifty feature file explorer view or mapped network drives of SharePoint document libraries. The good news is that in the Microsoft Edge 93 build onwards, it supports the View In file explorer feature! However, we have to do two extra steps to activate it.
Enable the “ConfigureViewInFileExplorer” policy for Microsoft Edge that allows Open WebDAV URLs in Windows File Explorer
We need to set the below registry key to enable WebDav URLs to open in Windows File Explorer:
- Navigate to [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge], (Create a new key “Edge” if it doesn’t exist).
- Create a new String Value “ConfigureViewInFileExplorer”
- Set it as “[{“cookies”: [“rtFa”, “FedAuth”], “domain”: “crescentintranet.sharepoint.com”}]“
Be sure you change the “crescentintranet.sharepoint.com” with your tenant URL. Without this step, You may find the “View in File Explorer” option in the view menu, but clicking on that does nothing!
This step can be pushed through GPO as in: https://docs.microsoft.com/en-us/SharePoint/sharepoint-view-in-edge
Enable View in File Explorer Option for the SharePoint Online Tenant:
The next step is to enable the “ViewInFileExplorerEnabled” flag at the tenant level if it’s not enabled already. Here are the steps:
Step 1: Update your PowerShell Module for SharePoint Online
As this is a new addition, we must update the PowerShell module in our local machine. Open the PowerShell console as an Administrator, and run:
Update-module microsoft.online.sharepoint.powershell
Step 2: Connect to SharePoint Online as Tenant Admin or SharePoint Online Administrator
Connect-SPOService -Url https://CrescentIntranet-admin.sharepoint.com
Step 3: Set the “ViewInFileExplorerEnabled” flag to True
Set-SPOTenant -ViewInFileExplorerEnabled $True
Close and Re-open the Edge Browser, and the View in File Explorer option should start working now!
Follow these steps to add a SharePoint document library to Quick Access in File Explorer: Open your SharePoint Online document library >> Click on the “Views” drop-down, and click on the “View in File Explorer” option. This opens the document library in Explorer view. Right-click the “Quick Access” on the file explorer and choose “Pin current folder to Quick Access”.
More info: Add SharePoint Online Document Library to “Quick Access” in File Explorer
Go to File Explorer on your computer, >> Right Click on “This PC”>> Choose “Map to network drive”. Select the drive letter you want to use >> Enter the URL of your SharePoint Online document library, and click on the “Finish” button to map the SharePoint Online Library to Network Drive.
More info: How to Map SharePoint Online as a Network Drive?
ViewInFileExplorerEnabled isn’t even a property in our tenant from what I can see. Does it not exist by default?
Did something change recently perhaps?
Hi,
Thanks for the post.
Unfortunately, once I click View in File Explorer, nothing happens. Registry settings are there, edge://policy shows that the policy is active, I’m logged in to my machine using the same credentials I use for SPO. Any suggestion would be appreciated.
Add the site to Microsoft Edge’s IE 11 Compatibility sites list.
Is it possible through Edge to automate the reconnection of sharepoint network drives without using Edge’s IE mode?
As was done with Internet Explorer
Try enabling the Persistent Cookies For Explorer View:
Set-SPOTenant -UsePersistentCookiesForExplorerView $true
Thank you for the post! Worked like a charm.
Can we expect a delay in syncing changes back to SharePoint?
Pingback: How to Enable “View in File Explorer” in Microsoft Edge – A chronicle of issues encountered in SharePoint
Thanks a lot.