Disable-VBRNASProxyServer
Short Description
Disables an enabled file share backup proxy.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Disable-VBRNASProxyServer -Proxy <VBRNASProxyServer[]> [<CommonParameters>] |
Detailed Description
This cmdlet allows you to disable a file share backup proxy.
Run the Enable-VBRNASProxyServer cmdlet to enable a file share backup proxy.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Proxy | Specifies an array of file share proxies you want to disable. | Accepts the VBRNASProxyServer[] object. To get this object, run the Get-VBRNASProxyServer cmdlet. | True | Named | True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
None.
Examples
Disabling File Share Backup Proxy by Name
This example shows how to disable the File Share Backup Proxy 09 proxy by its name.
$nasproxy = Get-VBRNASProxyServer -Name "File Backup Proxy 09" Disable-VBRNASProxyServer -Proxy $nasproxy |
Perform the following steps:
- Run the Get-VBRNASProxyServer cmdlet. Specify the Name parameter value. Save the result to the $nasproxy variable.
- Run the Disable-VBRNASProxyServer cmdlet. Set the $nasproxy variable as the Proxy parameter value.
Related Commands