I would like to add bookmarks to Microsoft Edge, not by importing from IE but simply by dumping the bookmarks in the Edge bookmark folder.
This was possible in the Spartan builds and I think it was possible when edge was launched. I think the path used to be –
C:UsersDuncanAppDataLocalPackagesMicrosoft.MicrosoftEdge_8wekyb3d8bbweACMicrosoftEdgeUserDefaultFavorites
I have tried dumping the bookmarks in this folder and restarting my system but they haven’t shown up in Edge. I am wondering if the folder has changed since Windows 10 Fall Update as Edge bookmark synchronisation was introduced in this latest Windows 10 update.
How do I manually add bookmarks or folders of bookmarks to favourites in Edge?
Solution:
I am wondering if the folder has changed since Windows 10 Fall Update
Starting in in Windows 10 Insider Preview build 10565, your favorites in Microsoft Edge are now stored in an ESE database file instead of the previous Favorites folder.
This tutorial will show you how to change Microsoft Edge favorites to be stored in the new ESE database file or old Favorites folder location for your account in Windows 10.
Warning
This will reset and delete all your favorites in Microsoft Edge.
This is necessary to avoid corrupting your favorites when changing the storage location.
Note
The .bat files below will delete the two folders below to delete all your favorites in Microsoft Edge including favorites from the Favorites Bar for only your account.
(ESE database location)
%LocalAppData%PackagesMicrosoft.MicrosoftEdge_8wekyb3d8bbweACMicrosoftEdgeUserDefaultDataStore
(Favorites folder location)
%LocalAppData%PackagesMicrosoft.MicrosoftEdge_8wekyb3d8bbweACMicrosoftEdgeUserDefaultFavorites
The .bat files below will also change the DWORD value in the registry key below.
HKEY_CURRENT_USERSOFTWAREClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainerStoragemicrosoft.microsoftedge_8wekyb3d8bbweMicrosoftEdgeMain
FavoritesESEEnabled DWORD
0 = Favorites folder 1 = ESE database file
Microsoft_Edge_save_favorites_in_Favorites_folder.bat:
@echo off:: Created by: Shawn Brink:: http://www.tenforums.com:: Tutorial: http://www.tenforums.com/tutorials/30451-microsoft-edge-favorites-change-location-windows-10-a.htmlRD /S /Q "%LocalAppData%PackagesMicrosoft.MicrosoftEdge_8wekyb3d8bbweACMicrosoftEdgeUserDefaultDataStore"RD /S /Q "%LocalAppData%PackagesMicrosoft.MicrosoftEdge_8wekyb3d8bbweACMicrosoftEdgeUserDefaultFavorites"REG ADD "HKCUSOFTWAREClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainerStoragemicrosoft.microsoftedge_8wekyb3d8bbweMicrosoftEdgeMain" /V FavoritesESEEnabled /T REG_DWORD /D 0 /F
Microsoft_Edge_save_favorites_in_ESE_database.bat:
@echo off:: Created by: Shawn Brink:: http://www.tenforums.com:: Tutorial: http://www.tenforums.com/tutorials/30451-microsoft-edge-favorites-change-location-windows-10-a.htmlRD /S /Q "%LocalAppData%PackagesMicrosoft.MicrosoftEdge_8wekyb3d8bbweACMicrosoftEdgeUserDefaultDataStore"RD /S /Q "%LocalAppData%PackagesMicrosoft.MicrosoftEdge_8wekyb3d8bbweACMicrosoftEdgeUserDefaultFavorites"REG ADD "HKCUSOFTWAREClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainerStoragemicrosoft.microsoftedge_8wekyb3d8bbweMicrosoftEdgeMain" /V FavoritesESEEnabled /T REG_DWORD /D 1 /F
Source How to Change Storage Location of Microsoft Edge Favorites in Windows 10
How do I manually add bookmarks or folders of bookmarks to favourites in Edge?
According to the source below there is an extra step required (deleting a value FavOrder
from the registry, see steps 6 and 7).
Presumably deleting FavOrder
causes Edge to rescan the favourites.
How To: Get Your Browser Favorites into Microsoft Edge When the Import Fails in Windows 10
You can make your browser favorites available to Microsoft Edge manually.
Close Microsoft Edge.
In the Windows 10 Cortana search bar type
%userprofile%favorites
and hit enter. This opens Windows Explorer to the old location of your browser favorites.
Select all files and folders and choose Copy.
Now, in the Cortana search bar type
%localappdata%PackagesMicrosoft.MicrosoftEdge_8wekyb3d8bbweACMicrosoftEdgeUserDefaultFavorites
and hit enter.
This is the location where Microsoft Edge stores its favorite bookmarks.
Paste the files and folders you selected to copy in the previous step.
Open the Windows 10 registry editor (regedt32) and navigate to:
HKEY_CLASSES_ROOTLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainerStoragemicrosoft.microsoftedge_8wekyb3d8bbweMicrosoftEdge
Locate
FavOrder
and delete it from the Windows registry.
Open Microsoft Edge and view the manually imported favorites.
Source How To: Get Your Browser Favorites into Microsoft Edge When the Import Fails in Windows 10