Set-VBRInternetProxyUpdateOptions

Short Description

Modifies internet proxy settings. 

Applies to

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

Syntax

Set-VBRInternetProxyUpdateOptions [-Enabled] [-ProxyServerName <String>] [-Port <Int32>] [-RequireAuthentication] [-Credentials <CCredentials>] [<CommonParameters>]

Detailed Description

This cmdlet modifies internet proxy settings. 

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Credentials

Specifies the credentials used to log in to the proxy server.

Accepts the CCredentials object. To get this object, run the Get-VBRCredentials cmdlet.

False

Named

False

Enabled

Enables the use of a proxy server.

SwitchParameter

False

Named

False

Port

Specifies the port used to connect to the proxy server.

Int32

False

Named

False

ProxyServerName

Specifies the DNS or IP address of the proxy server.

String

False

Named

False

RequireAuthentication

Defines if the proxy server requires authentication.

SwitchParameter

False

Named

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

VBRInternetProxyUpdateOptions

Examples

Example 1. Setting Proxy Server Without Authentication

This command sets example.server.local as the proxy server for updates over port 443.

Set-VBRInternetProxyUpdateOptions -Enabled -ProxyServerName "example.server.local" -Port "443"

Example 2. Setting Proxy Server With Authentication

This command sets example.server.local as the proxy server for updates over port 443. The command also provides credentials for authentication.

$creds = Get-VBRCredentials

Set-VBRInternetProxyUpdateOptions -Enabled -ProxyServerName "example.server.local" -Port "443" -RequireAuthentication -Credentials $creds

Perform the following steps:

  1. Run the Get-VBRCredentials cmdlet. Save the result to the $creds variable.
  2. Run the Set-VBRInternetProxyUpdateOptions cmdlet and specify the following settings:
  • Specify the ProxyServerName parameter value.
  • Specify the Port parameter value.
  • Set the $creds variable as the Credentials parameter value.

Related Commands

Get-VBRInternetProxyUpdateOptions

Page updated 8/4/2025

Page content applies to build 13.0.0.4967