Hi,
Sure, I can help you with that. The favorites in Microsoft Edge are stored in a file named Bookmarks
and its backup is stored in Bookmarks.bak
. These files are located in the Default
folder under User Data
.
You can modify your USMT script to only migrate the Bookmarks
and Bookmarks.bak
files. Here’s how you can do it:
XML
<displayName _locID="migapp.EdgeSXS">Microsoft Edge</displayName>
<pattern type="File">%CSIDL_LOCAL_APPDATA%\Microsoft\Edge\User Data\Default\Bookmarks [*]</pattern>
<pattern type="File">%CSIDL_LOCAL_APPDATA%\Microsoft\Edge\User Data\Default\Bookmarks.bak [*]</pattern>
This script will only backup the Bookmarks
and Bookmarks.bak
files from the Default
folder, which should significantly reduce the time it takes to backup compared to backing up the entire User Data
folder.
Please note that this will only backup the favorites from the default profile. If you have multiple profiles and want to backup the favorites from all of them, you would need to adjust the script accordingly.