For a degraded ReFS volume showing corruption symptoms such as Event ID 133, use refsutil salvage to copy recoverable files to a different healthy volume instead of attempting in-place repair.
- Confirm the scenario fits ReFS corruption.
- Event ID 133 and a RAW or inaccessible volume are listed as common signs of ReFS corruption.
- On Hyper-V backup storage, ReFS corruption can also affect VHD, AVHDX, or configuration files.
- Use a supported operating system.
-
refsutil salvageis supported on:- Windows 10 Pro for Workstations or later
- Windows Server 2019 or later
-
- Prepare three locations.
-
<source volume>: the damaged ReFS volume, such asE: -
<working directory>: a folder for logs and progress data, not on the source volume -
<target directory>: a different healthy volume where recovered files will be copied, not on the source volume
-
- Start with a quick automatic salvage.
refsutil salvage -QA E: C:\Temp D:\Recovered -x-
-QAruns a Quick Scan Phase followed by a Copy Phase. -
-xforces the volume to dismount first if necessary. This invalidates open handles to the volume. - This is the faster first pass and minimizes recovery of outdated files, directories, or volumes.
-
- If the quick pass does not recover what is needed, run a full automatic salvage.
refsutil salvage -FA E: C:\Temp D:\Recovered -x-
-FAperforms a deeper full scan and then copies recoverable files. - This can take much longer than
-QA.
-
- If more control is needed, use manual mode.
- Diagnose mountability:
refsutil salvage -D E: C:\Temp - Quick scan only:
This logs discovered files inrefsutil salvage -QS E: C:\Temp -vfoundfiles.<volume signature>.txtin the working directory. - Copy specific files from the generated file list:
refsutil salvage -SL E: C:\Temp D:\Recovered FileList.txt -x
- Diagnose mountability:
- For Hyper-V recovery, validate the recovered VM files.
- Check whether recovered VHD, AVHDX, and configuration files are present.
- If files are missing or irrecoverable, restore from the latest backup.
Important cautions:
- Do not place the working directory or target directory on the damaged source volume.
- The
-mand-svoptions can lead to unexpected results. -
-xis disruptive because it forces a dismount and invalidates open handles. - If the storage path is unstable or the storage pool is degraded, validate storage connectivity, drivers, and firmware before or during recovery.
References: