Yes, it is possible to exclude a specific disk from the Hyper-V VM backup when using Data Protection Manager (DPM). To do so, you can follow these steps:
1.Stop the DPMRA service: Before performing the exclusion, ensure that there are no jobs in progress and stop the DPMRA (Data Protection Manager Remote Agent) service on the DPM server. This step is essential to avoid any conflicts during the process.
https://learn.microsoft.com/en-us/system-center/dpm/back-up-vmware?view=sc-dpm-2025&tabs=Add#exclude-disk-from-vmware-vm-backup
https://learn.microsoft.com/en-us/azure/site-recovery/hyper-v-exclude-disk#exclude-disks
2.Run the exclusion command: Use the following PowerShell command to exclude the disk from the VM backup:
./ExcludeDisk.ps1 -Datasource $vmDsInfo[0] -Add "[Datastore] vmdk/vmdk.vmdk"
Replace [Datastore] vmdk/vmdk.vmdk
with the actual path of the disk you want to exclude. For example, if you want to exclude the disk D:
from the server RMSXXX1
, the command will look like:
./ExcludeDisk.ps1 -Datasource $vmDsInfo[0] -Add "[datastore1] RMSXXX1/DiskD.vmdk"
3.Verify exclusion: To confirm that the disk has been successfully excluded, you can run the following command to view the current exclusion list:
./ExcludeDisk.ps1 -Datasource $vmDsInfo[0] -view
4.Remove exclusion (if necessary): If you ever need to remove the disk from the exclusion list, you can run the following command:
./ExcludeDisk.ps1 -Datasource $vmDsInfo[2] -Remove "[datastore1] RMSXXX1/DiskD.vmdk"
5.Perform a consistency check: After excluding the disk, it is recommended to run a consistency check manually to ensure everything is in a consistent state.
let us know if any help, we will always help as you needed.!
Please do not forget to "Accept the answer” and upvote it wherever the information provided helps you, this can be beneficial to other community members.it would be greatly appreciated and helpful to others.