Code: Select all
Connect-VBRServer -server veeamServer.domain.com -port 9392
Code: Select all
Connect-VBRServer -server veeamServer.domain.com -port 9392 -User myusername
Code: Select all
cmdlet Connect-VBRServer at command pipeline position 1
Supply values for the following parameters:
Password: typingmypassword
Connect-VBRServer : PowerShell client update environment initialization failed: Failed to connect to Veeam Backup & Replication server:
The logon attempt failed
Execution environment cannot be initialized to Remote
At line:1 char:1
+ Connect-VBRServer -server veeamServer.domain.com -port 9392 -User m ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [Connect-VBRServer], AggregateException
+ FullyQualifiedErrorId : UpdateCheckerErrorId,Veeam.Backup.PowerShell.Cmdlets.ConnectVBRServer
the only thing that works now is
Code: Select all
Connect-VBRServer -server veeamServer.domain.com -port 9392 -Credential $(Get-Credential)