GitHub user abh1sar added a comment to the discussion: Failed to create a new instance from backup
@leolns the Volume (Primary Storage) name in vmware is created by removing the '-' hyphens from the Primary storage UUID in cloudstack. So the -Name parameter looks correct. The issue is with the -Server parameter. `$server = Get-VBRServer -Name \"%s\"", hostIp` The $server returned here is an Array object, which the command does not expect. Hence the error. Can you try running Get-VBRServer -Name <hostip> directly on the Veeam server? Ideally it should return only one entry, but for you it seems to be returning multiple. Please check why are multiple servers present in Veeam for the same IP. GitHub link: https://github.com/apache/cloudstack/discussions/11886#discussioncomment-14748177 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
