How to fix VMware Converter error “FAILED: The VSS snapshots cannot be stored”

While moving some VM’s from Hyper-V to VMware using VMware Converter a VM failed to convert with the error: FAILED: The VSS snapshots cannot be stored.

FAILED: The VSS snapshots cannot be stored because there is not enough space on the source volumes or because the source machine does not have any NTFS volumes. Error code: 2147754783 (0x8004231F).

Come to find out the System Reserved partition was full. Our soon to be retired Appassure backup application was nice enough to fill up the volume.

Luckily Appassure is being replaced by Veeam and fixing the above VMware Converter error is an easy fix.

Steps on how-to fix VMware Converter “FAILED: The VSS snapshots cannot be stored” error message

  1. Open Computer Management by pressing Windows Key+R and typing in compmgmt.msc, then go to Disk Management.
    computer management
  2. Right click on the System Reserved partition and select Properties.
    system reserved properties
  3. Then click on the Shadow Copies tab and ensure Shadow Copies are disabled for each volume and then close the Properties window.
    system reserved shadow copies
  4. Again, right click on the System Reserved partition and then select “Change Drive Letter and Path…” and assign the partition a drive letter (I’ll be using letter Z).
    system reserved drive letter
  5. Next open the Z: drive in File Explorer and right click on System Volume Information folder and select Properties.
    system reserved z drive
  6. In the System Volume Information Properties window, click on the Security tab then click on Advanced to open the Advanced Security Setting dialog box.
    system volume information advanced
  7. Now add the Everyone group Full control to the folder, subfolders and files.
    advanced security settings
  8. Right click on Start Menu icon and select Command Prompt (Admin) to open a Command Prompt as Administrator.
    command prompt as admin
  9. Now type in the following commands:
    
    Z:
    fltmc unload aafsflt
    cd "System Volume Information"
    del aalog_*
    cd ..
    fltmc load aafsflt
    

    delete logs commands
    Then exit the command prompt.

  10. Finally be sure to remove the Everyone access from the System Volume Information folder (steps 6 & 7) and remove the drive letter (step 4).

Now re-run your VMware Converter task again and the migration should work without issue!

Similar Posts