PowerShell Script to list the virtual machine UUIDs, and script to convert the UUID's into virtual machine names in the configuration
get-jobtemplate -type backup | ForEach-Object {write $_.TargetVMIDs} >> uuid.txt
**Gets UUIDs of all VMs being backed up**
get-inventoryentity -type virtualmachine | where {$_.UUID -eq "**UUID HERE**"} | ForEach-Object {write $_.Name}
** Resolve UUID to VM name**