@Apurva Pathak Sorry for the delayed response!
When you perform a backup of an Azure VM, there are two types of backups that can be performed: application-consistent backups and file system-consistent backups.
Application-consistent backups use the Volume Shadow Copy Service (VSS) to ensure that all data in memory and on disk is in a consistent state at the time of the backup. This is important for applications that have databases or other data that is constantly changing.
File system-consistent backups, on the other hand, do not use VSS and only ensure that the file system is in a consistent state at the time of the backup. This type of backup is typically used for file servers or other systems that do not have databases or other applications that require application-consistent backups.
In your case, it sounds like the application-consistent backup is failing due to a VSS Writer issue, but the file system-consistent backup is succeeding. This means that you have a backup of the file system, but you may not have a backup of the application data.
If you need to restore the VM, you can use the file system-consistent backup to restore the file system, but you may not be able to restore the application data. This could result in data loss or other issues if the application data is critical.
To restore the VM using the file system-consistent backup, you can follow these steps:
- Create a new VM from the backup image.
- Attach the disks from the backup image to the new VM.
- Boot the new VM and verify that the file system is intact.
- If necessary, restore any missing application data from a separate backup.
It is important to note that there are risks involved with restoring a VM from a file system-consistent backup. If the application data is critical, you may need to find a way to resolve the VSS Writer issue and perform an application-consistent backup to ensure that all data is backed up properly.
Hope this information helps. Feel free to reply if you have any questions!
If the response helped, do "Accept Answer" and up-vote it