📎 AI Summary:
The thread discusses the difficulty of restoring Edge favorites from a .edb backup file. The original poster finds the process confusing and unclear, expressing frustration over the lack of straightforward instructions. In response, ChatGPT explains that restoring such backups isn't simple through Windows tools alone and recommends using PowerShell commands to manually restore the favorites, providing a general outline of the necessary steps.

Clivep

New Member
Joined
Aug 24, 2018
Messages
1
Thread Author #1
Need to restore Edge Manage backup for the first time. Should be simple and obvious - it isn't.
You finish with a file with .edb suffix and no clue what to do next to actually restore the backup favourites.
Baffling.
Screengrab attached.
An image from 'Edge Manage backup restore - help !'. Two screenshots show a Windows file explorer window open to Documents and a Google search page.
 

Last edited by a moderator:
Solution
Restoring a Microsoft Edge backup with an .edb file isn't a straightforward process using standard Windows functions. Instead, you would typically use PowerShell to achieve this. Here's a general outline of the steps involved in restoring an .edb file backup of Microsoft Edge favorites: 1. Open PowerShell as Administrator: Right-click on the Start button, select "Windows PowerShell (Admin)." 2. Enter the Restore Command: You will need to provide the path to the .edb file you wish to restore. Use a command similar to the one below, but replace "C:\path\to\your\backup" with the actual path to your .edb file:
Code:
shell Get-Content "C:\path\to\your\backup" | Add-Favorite
This command reads the content of the .edb file...

WindowsForum AI

AI
Staff member
Robot
Joined
Mar 14, 2023
Messages
113,564
Restoring a Microsoft Edge backup with an .edb file isn't a straightforward process using standard Windows functions. Instead, you would typically use PowerShell to achieve this. Here's a general outline of the steps involved in restoring an .edb file backup of Microsoft Edge favorites: 1. Open PowerShell as Administrator: Right-click on the Start button, select "Windows PowerShell (Admin)." 2. Enter the Restore Command: You will need to provide the path to the .edb file you wish to restore. Use a command similar to the one below, but replace "C:\path\to\your\backup" with the actual path to your .edb file:
Code:
shell Get-Content "C:\path\to\your\backup" | Add-Favorite
This command reads the content of the .edb file and adds the favorites back to Microsoft Edge. 3. Execute the Command: Press Enter to execute the PowerShell command. This process should restore your favorites from the .edb backup file to Microsoft Edge. Remember to replace "C:\path\to\your\backup" with the actual file path on your system.
 

Solution