--- title: "Set-VBOInternetProxySettings" description: "This cmdlet modifies global internet proxy server settings configured in Veeam Backup for Microsoft 365. To modify settings, you need to enter the necessary parameters with new values. The parameters that you omit will remain unchanged." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/set-vbointernetproxysettings.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Global Internet Proxy Server Settings > Set-VBOInternetProxySettings" dateModified: "2026-08-21" --- # Set-VBOInternetProxySettings ## Short Description Modifies global internet proxy server settings. ## Syntax ``` Set-VBOInternetProxySettings [-UseInternetProxy] [-Hostname ] [-Port ] [-UseAuthentication] [-Credential ] [] ``` ## Detailed Description This cmdlet modifies global internet proxy server settings configured in Veeam Backup for Microsoft 365. To modify settings, you need to enter the necessary parameters with new values. The parameters that you omit will remain unchanged. ::: note This cmdlet requires a `PSCredential` object. To obtain a `PSCredential` object, run the [`Get-Credential`](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.security/get-credential) cmdlet. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Credential

Specifies credentials that you want to use for authenticating to the internet proxy server.

PSCredential

False

Named

False

Hostname

Specifies a DNS name or an IP address of an internet proxy server.

String

False

Named

False

Port

Specifies a port number. The cmdlet will use this port number to connect to the internet proxy server.

Default: 3128.

UInt16

False

Named

False

UseAuthentication

Defines that the internet proxy server requires authentication.

Default: False

SwitchParameter

False

Named

False

UseInternetProxy

Defines that Veeam Backup for Microsoft 365 will use an internet proxy server as a gateway.

Default: False

SwitchParameter

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Learn. ## Output Object The cmdlet returns the [`VBOInternetProxySettings`](vbointernetproxysettings.md) object that contains internet proxy server settings. ## Examples ::: example ### Modifying Global Internet Proxy Server Settings This command sets global internet proxy server settings. ``` Set-VBOInternetProxySettings -UseInternetProxy -Hostname internetProxy.local -Port 3128 ``` :::