--- title: "Remove-VBRSyslogServer" description: "This cmdlet modifies the syslog server added to Veeam Backup & Replication." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrsyslogserver.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Veeam Backup & Replication Settings > Specifying Syslog Server Settings > Remove-VBRSyslogServer" dateModified: "2026-08-19" --- # Remove-VBRSyslogServer ## Short Description Removes the syslog server. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBRSyslogServer -Server [] ``` ## Detailed Description This cmdlet modifies the syslog server added to Veeam Backup & Replication. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Server

Specifies the syslog server you want to remove.

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

VBRSyslogServer

True

Named

True (ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Removing Syslog Server from Veeam Backup & Replication This example shows how to remove the existing syslog server. ``` $server = Get-VBRSyslogServer Remove-VBRSyslogServer -Server $server ``` Perform the following steps: 1. Run the [`Get-VBRSyslogServer`](get-vbrsyslogserver.md) cmdlet. Save the result to the `$server` variable. 2. Run the `Remove-VBRSyslogServer` cmdlet. Set the `$server` variable as the `Server` parameter value. ::: ## Related Commands [`Get-VBRSyslogServer`](get-vbrsyslogserver.md)