---
title: "Remove-DbaAgListener"
description: "Removes availability group listeners from SQL Server instances."
url: "https://dbatools.io/Remove-DbaAgListener/"
availability: "Windows, Linux, macOS"
tags: ["AG", "HA"]
author: "Chrissy LeMaire (@cl), netnerds.net"
source: "https://github.com/dataplat/dbatools/blob/master/public/Remove-DbaAgListener.ps1"
last_updated: "2024-01-01"
---

# Remove-DbaAgListener

## Synopsis

Removes availability group listeners from SQL Server instances.

## Description

Removes availability group listeners from SQL Server instances, permanently deleting the virtual network name and IP address configuration that clients use to connect to availability group databases. This operation is typically performed during decommissioning, reconfiguration, or when consolidating listeners. Once removed, applications will need to connect directly to individual replicas or use a different listener. The function can target specific listeners by name or remove all listeners from specified availability groups.

## Syntax

```powershell
Remove-DbaAgListener
    [[-SqlInstance] <DbaInstanceParameter[]>]
    [[-SqlCredential] <PSCredential>]
    [[-Listener] <String[]>]
    [[-AvailabilityGroup] <String[]>]
    [[-InputObject] <AvailabilityGroupListener[]>]
    [-EnableException]
    [-WhatIf]
    [-Confirm]
    [<CommonParameters>]

```

## Examples

### Example 1: Removes the ag1 and ag2 availability groups on sqlserver2012

```powershell
PS C:\> Remove-DbaAgListener -SqlInstance sqlserver2012 -AvailabilityGroup ag1, ag2 -Confirm:$false
```

Removes the ag1 and ag2 availability groups on sqlserver2012. Does not prompt for confirmation.  

### Example 2: Removes the listeners returned from the Get-DbaAvailabilityGroup function

```powershell
PS C:\> Get-DbaAvailabilityGroup -SqlInstance sqlserver2012 -AvailabilityGroup availabilitygroup1 | Remove-DbaAgListener
```

Removes the listeners returned from the Get-DbaAvailabilityGroup function. Prompts for confirmation.  

### Optional Parameters

##### -SqlInstance

The target SQL Server instance or instances. Server version must be SQL Server version 2012 or higher.

| Property | Value |
| --- | --- |
| Alias |  |
| Required | False |
| Pipeline | false |
| Default Value |  |

##### -SqlCredential

Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).  
Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.  
For MFA support, please use Connect-DbaInstance.

| Property | Value |
| --- | --- |
| Alias |  |
| Required | False |
| Pipeline | false |
| Default Value |  |

##### -Listener

Specifies the name of specific availability group listeners to remove. Required when using SqlInstance parameter.  
Use this when you need to remove particular listeners rather than all listeners from availability groups.

| Property | Value |
| --- | --- |
| Alias |  |
| Required | False |
| Pipeline | false |
| Default Value |  |

##### -AvailabilityGroup

Filters listener removal to only those within the specified availability groups.  
Use this when you want to remove listeners from particular AGs while preserving listeners from other availability groups on the same instance.

| Property | Value |
| --- | --- |
| Alias |  |
| Required | False |
| Pipeline | false |
| Default Value |  |

##### -InputObject

Accepts availability group listener objects from the pipeline, typically from Get-DbaAgListener.  
Use this when you need to remove listeners that have been filtered or selected through other dbatools commands.

| Property | Value |
| --- | --- |
| Alias |  |
| Required | False |
| Pipeline | true (ByValue) |
| Default Value |  |

##### -EnableException

By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.  
This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.  
Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

| Property | Value |
| --- | --- |
| Alias |  |
| Required | False |
| Pipeline | false |
| Default Value | False |

##### -WhatIf

Shows what would happen if the command were to run. No actions are actually performed.

| Property | Value |
| --- | --- |
| Alias | wi |
| Required | False |
| Pipeline | false |
| Default Value |  |

##### -Confirm

Prompts you for confirmation before executing any changing operations within the command.

| Property | Value |
| --- | --- |
| Alias | cf |
| Required | False |
| Pipeline | false |
| Default Value |  |

## Outputs

**PSCustomObject**

Returns one object per listener that is successfully removed from the availability group.

**Properties:**

- ComputerName: The computer name of the SQL Server instance hosting the listener
- InstanceName: The SQL Server instance name (the named instance or MSSQLSERVER for default instance)
- SqlInstance: The full SQL Server instance name in the format ComputerName\InstanceName
- AvailabilityGroup: Name of the availability group from which the listener was removed
- Listener: The name of the availability group listener that was removed
- Status: The status of the operation; always "Removed" for successful removals

---

Part of [dbatools](https://dbatools.io/), a free and open source PowerShell module for SQL Server administration. Full command index: https://dbatools.io/commands/
