A step-by-step runbook for recovering, backing up & securing Microsoft Edge saved passwords
Fill in the fields below — every command in this guide updates automatically.
Microsoft Edge stores saved passwords in a SQLite database file called Login Data, located inside your Edge profile folder. When this file becomes corrupted or falls out of sync with Windows' encrypted credential store, Edge's password manager displays zero saved entries — even though the underlying data may still exist in older file snapshots on your filesystem.
This guide walks through the complete recovery workflow: locating a healthy Login Data snapshot, safely backing up your current profile state, swapping in the recovery file, and verifying that passwords are restored — using only built-in Windows commands. No third-party decryption tools are required.
The Login Data file lives inside your Edge profile folder. Before you can replace it, you need to find all copies on your system to identify the healthiest candidate. Open Windows PowerShell (search "PowerShell" in Start) and run:
Get-ChildItem -Path "C:\Users\" -Recurse -Filter "Login Data" -ErrorAction SilentlyContinue | Select-Object FullName, Length, LastWriteTime | Sort-Object Length -Descending
LastWriteTime predates the moment your passwords disappeared — that is your best recovery candidate.| Signal | What It Means |
|---|---|
| Larger file size (Length) | More credential records stored — likely a richer backup |
| LastWriteTime before the issue | Predates the corruption event |
| Located in User Data or a backup folder | Profile-linked — directly usable as a replacement |
| Very small file (< 50 KB) | Likely a fresh/empty database — skip it |
After identifying your candidate, note its full path and filename and enter it in the Recovery Candidate Filename field above.
Before replacing any files, preserve the current state of your Edge profile — even if it appears broken. Open Command Prompt as Administrator (right-click Start → "Windows Terminal (Admin)" or "Command Prompt (Admin)").
xcopy "C:\Users\\AppData\Local\Microsoft\Edge\User Data\" "\" /E /I /H /Y
Copies your full Edge profile directory including subfolders (/E), hidden files (/H), creates the destination if missing (/I), and overwrites without prompting (/Y).
copy "C:\Users\\AppData\Local\Microsoft\Edge\User Data\\Login Data" "\Login Data.corrupted.bak"
Saves the corrupted file with a .bak extension so you can restore the original state if the recovery attempt doesn't work as expected.
msedge.exe process is listed under Processes. If Edge is running, it will immediately overwrite the replacement file with the corrupted version.copy /Y "C:\Users\\AppData\Local\Microsoft\Edge\User Data\\" "C:\Users\\AppData\Local\Microsoft\Edge\User Data\\Login Data"
The /Y flag suppresses the overwrite confirmation prompt. If the command reports "1 file(s) copied," the replacement succeeded. If your candidate is in a different folder, provide its full path instead.
edge://settings/passwords and press Enter.edge://settings/passwords.7z.| Item | Location | Status |
|---|---|---|
| Full Edge Profile Backup | <BackupDestination>\<YourProfile>\ | ✓ Preserved |
| Corrupted Login Data Backup | <BackupDestination>\Login Data.corrupted.bak | ✓ Preserved |
| Encrypted Password Archive | (location you chose)\<ExportFilename>.7z | ✓ Encrypted |
| Plaintext CSV Export | — | ✗ Deleted |