Assuming all goes well with the import, here is something you can try to recover some of the updates you had made after your original import.
First, right-click on the Windows icon at the left side of your taskbar, and click “Windows PowerShell”:
In the Windows PowerShell window, type cd ""
, then use the left arrow key ← to backspace exactly once, placing the cursor in-between the two double-quotation marks:
Now, use Windows File Explorer to navigate to the folder where you have saved your .JSON export. To make some of the following steps easier, rename the export to bitwarden_export.json
.
Click in the address bar of Windows File Explorer to select the contents of the address bar (which should be the path to the current folder), and click Ctrl+C to copy the path.
Left-click one time on the Windows PowerShell window, and then right-click once. This should paste the path you had copied in between the two double-quotation marks in the expression cd ""
(i.e., the path string should now be enclosed between the quotation marks). If all looks good, hit Enter.
In the Windows PowerShell window, you can now type dir -n bitwarden_export.json
), and hit Enter. This should just display the name of the file (bitwarden_export.json
). If you see an error message, you have made a mistake in the preceding steps.
Next, copy the following expression into your clipboard:
(type bitwarden_export.json | ConvertFrom-Json) | Select-Object -ExpandProperty items | Sort-Object -Property revisionDate | Select-Object -Property name,revisionDate
Left-click one time on the Windows PowerShell window, and then right-click once. This should paste the expression that you just copied into the PowerShell window. Now hit Enter. You should see a long list (all entries in the Bitwarden export), but they should be sorted by the date that each item was revised (with the most recently modified vault items listed last). By scrolling up through the list, you will hopefully be able to identify the vault items that you had updated after your original import. I hope this helps.