Hello anonymous user-4139
This issue appears to be intermittent as the dates don’t indicate a predictable continuous increase such as daily or weekly. If you are using on or off host proxy processing for Hyper-V you could try the following:
Check your Veeam logs for each date during the backup, the logs should indicate some form of access error or file lock. If the access error or file log appears to have nothing to do with why you can’t delete the checkpoints then I would attempt their removal via PowerShell. At best it will resolve it and combined with the above the problem is resolved, at worst it gives you an actual error as to why they cannot be deleted.
Get-VMSnapshot -ComputerName "MyHyperVHost" -VMName "VMWithLingeringBackupCheckpoint"
This shows you the checkpoint information (note it does not show you the XXX-AutoRecovery.avhdx” as a checkpoint.
And then we simply run Remove-VMSnapshot
Remove the lingerging backup checkpoint like you would a normal one
Get-VMSnapshot -ComputerName "MyHyperVHost" -VMName "VMWithLingeringBackupCheckpoint" | Remove-VMSnapshot
Hope this helps with your query!
--If the reply is helpful, please Upvote and Accept as answer--