I'm having to force the FQDN like below which does not flow with other VBR cmdlets.
Code: Select all
$VeeamServer="MyServerHostName"
Get-VBRBackupRepository -Name $VeeamServer
[....stuff...]
Import-VBRBackup -Server "$VeeamServer.$env:USERDNSDOMAIN" -FileName "blahblah"
I can't even use $FQDN=(Get-VBRBackupRepository -Name $VeeamServer).Host because ".Host" is not usable even though it's a table header returned by Get-VBRBackupRepository.
Also, off subject, Get-VBRBackupRepository's .FullPath property returns "E:|Backups" instead of "E:\Backups"