Disable-VBRComputerFileProxyServer
Short Description
Disables general-purpose backup proxies.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Disable-VBRComputerFileProxyServer -Proxy <VBRComputerFileProxyServer[]> [<CommonParameters>] |
Detailed Description
This cmdlet disables general-purpose backup proxies.
Run the Enable-VBRComputerFileProxyServerEnables disabled general-purpose backup proxies. cmdlet to enable a file backup proxy.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Proxy |
Specifies an array of general-purpose backup proxies. The cmdlet will disable these backup proxies.
Accepts the |
|
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRComputerFileProxyServer object that contains settings of the general-purpose backup proxy added to the backup infrastructure.
Examples
Disabling General-purpose Backup Proxy
This example shows how to disable a general-purpose backup proxy.
|
$fileproxy = Get-VBRComputerFileProxyServer Disable-VBRComputerFileProxyServer -Proxy $fileproxy[3] |
Perform the following steps:
- Run the
Get-VBRComputerFileProxyServerReturns general-purpose backup proxies added to the Veeam Backup & Replication infrastructure. cmdlet. Save the result to the$fileproxyvariable. - Run the
Disable-VBRComputerFileProxyServercmdlet. Set the$fileproxy[3]variable as theProxyparameter value.The
Get-VBRComputerFileProxyServercmdlet will return an array of backup proxies. Mind the ordinal number of the necessary backup proxy (in our example, it is the fourth backup proxy in the array).
Related Commands
Get-VBRComputerFileProxyServerReturns general-purpose backup proxies added to the Veeam Backup & Replication infrastructure.