If you are able to access your Parity Storage spaces and it does not show as RAW in Disk Manager, you can attempt recovery using WinFR and the steps below. For more information on how to use WinFR, see Recover lost files on Windows 10
- Download and run the tool from https://www.microsoft.com/store/apps/9N26S50LN705
- Run segment mode (
/r
) with the undeleted files flag (/u
) to recover files from your NTFS volumes. By default, this will recover all possible files. You can add filter flags if you are only interested in certain file formats (such as/n *.docx
) and to reduce system file recovery. Example command to recover all docx
files present in the C:
drive to the D:\SpacesRecovery
folder: winfr.exe C: D:\SpacesRecovery /r /u /n*.docx
- Once the command has completed, you can view the recovered files. In the above example, you would need to go to
D:\SpacesRecovery
to do so. If you encounter issues using WinFR, please contact winfr@microsoft.com.
If you have a ReFS volume that shows as RAW in Disk Manager, you can use the refsutil salvage command to recover data to a volume of equivalent size. There are two options for salvage command: quick and full. A quick recovery may not recover as much data as a full recovery.
To perform a quick recovery:
In an elevated command prompt: refsutil salvage -QA
<source volume> <working directory> <target directory>
For example: refsutil salvage -QA E: F:\SalvagedFiles
To perform a full recovery:
In an elevated command prompt: refsutil salvage -FA
<source volume> <working directory> <target directory>
For example: refsutil salvage -FA E: F:\SalvagedFiles