Hyper V backup failing

Nova Edge 80 Reputation points
2025-10-05T01:11:32.0366667+00:00

Server 2012 R2 STD

I have a Hyper V host with 2 virtual machines running on it.

The issue started when our Veeam backup software started to fail backing up the one VM. After transferring ~10GB of data it would just fall off and fail. I worked with Veeam extensively on this.

We tried a local Hyper V Windows backup and that also failed around the 10GB mark with this error. Incorrect function With this test backup I changed the storage from the NAS to local storage on the host but it made no difference.

The host and the VM are both fully updated. They aren't struggling for system resources during backups. No network drops on the host, VM or NAS. The other VM on the host backs up just fine.

Windows for business | Windows Client for IT Pros | Storage high availability | Other
0 comments No comments
{count} votes

Answer accepted by question author
  1. HarryPhan-2691 8,005 Reputation points Independent Advisor
    2025-10-05T01:15:52.82+00:00

    Let's start with two non-destructive checks you can run from inside the problematic virtual machine:

    Run chkdsk /f****: Schedule a disk check on the VM's C: drive (and any other drives it has) and then restart the VM. This will attempt to find and repair any file system corruption that could be halting the backup process.

    Run sfc /scannow****: This system file checker will scan for and attempt to repair corrupted Windows system files within the VM.

    If these don't resolve it, the next step is to look at the virtual hard disk from the host level. In Hyper-V Manager, try running an Inspector or Checker on the VM's VHDX files. You can do this with PowerShell (as Admin) on the Hyper-V host:

    powershell

    Get-VHD -Path "C:\Path\To\Your\VM.vhdx" | Check-VHD

    This command will check the integrity of the VHDX file and report if it finds any structural issues.

    The most reliable, albeit more time-consuming, solution is often to create a new VHDX, attach it to the VM, and use a tool like Robocopy to migrate the data to a fresh, healthy disk.

    =====

    Please give these steps a try and let me know what you find. You're on the right track, and we just need to narrow it down further. If this guidance helps you pinpoint the issue, please feel free to hit "Accept Answer" – it would be great to know what the final culprit was! 😊

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Nova Edge 80 Reputation points
    2025-10-05T01:15:00.7233333+00:00

    anyone help please?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.