Veeam: Powershell get Backup Proxies Information
Hello friends, In this opportunity I will be showing you how to obtain Backup Proxy related information from PowerShell in a Veeam Backup & Replication infrastructure. To begin with it is necessary to establish the initial connection to the Backup Server using the Connect-VBRServer command. In my case the FQDN of my Backup Server is veeam-vbr.pharmax.local. PS C:\Users\jocolon> Connect-VBRServer -Server veeam-vbr.pharmax.local -Credential (Get-Credential) cmdlet Get-Credential at command pipeline position 1 Supply values for the following parameters: User: pharmax\administrator Password for user pharmax\administrator: ```` PS C:\Users\jocolon> After connecting to the server you can use the Get-VBRViProxy cmdlet to identify which Backup Proxy servers are in your infrastructure. ...