Enable-VBRComputerFileProxyServer

Short Description

Enables disabled file proxy servers.

Applies to

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Enable-VBRComputerFileProxyServer -Proxy <VBRComputerFileProxyServer[]>  [<CommonParameters>]

Detailed Description

This cmdlet enables disabled file proxy servers.

Run the Disable-VBRComputerFileProxyServer cmdlet to disable a file backup proxy.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Proxy

Specifies an array of file backup proxies. The cmdlet will enable these proxies.

Accepts the VBRComputerFileProxyServer[] object. To get this object, run the Get-VBRComputerFileProxyServer 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

The cmdlet returns the VBRComputerFileProxyServer object that contains settings of the file proxy server added to the backup infrastructure.

Examples

Enabling Disabled File Proxy Server

This example shows how to enable the disabled file proxy server.

$fileproxy = Get-VBRComputerFileProxyServer

Enable-VBRComputerFileProxyServer -Proxy $fileproxy[3]

Perform the following steps:

  1. Run the Get-VBRComputerFileProxyServer cmdlet. Save the result to the $fileproxy variable.
  2. Run the Enable-VBRComputerFileProxyServer cmdlet. Set the $Proxy variable as the Proxy parameter value.

The Get-VBRComputerFileProxyServer cmdlet will return an array of file proxies. Mind the ordinal number of the necessary file proxy (in our example, it is the fourth file proxy in the array).

Related Commands

Get-VBRComputerFileProxyServer