could somebody help me with "Start-VBRRestoreVMFiles" ?
I need to restore a VM to another destination (veeam b&r, vCenter) and only the OS-DISK without the DataDisks.
Tryed to use the Command: Start-VBRRestoreVMFiles but it will not work.
Have Source VEEAM B&R and Destination VEEAM B&R System, and Source vCenter and Destination vCenter.
I did a Import of Backups from the Source VEEAM B&R System on the Destination VEEAM B&R System.
Code: Select all
$dst = 192.168.1.110 (VEEAM B&R Destination System)
$server = Get-VBRServer -Name $dst
$vmlist = TESTVM1
$restorepoint = Get-VBRRestorePoint -Name $vmlist | Sort-Object –Property CreationTime –Descending | Select-Object -First 1
Start-VBRRestoreVMFiles –RestorePoint $restorepoint -Server $server -Path "E:\RestoreFiles"
How does it work ?
Is it possible to Restore direct to Destination vCenter ?
Or another Solution for this case: Restore to Destionation vCenter but only the OS-DISK no Datadisks.