Topic Last Modified: 2012-12-06

Removes a pool that contains the computers that host trusted applications. This cmdlet was introduced in Lync Server 2010.

Syntax

Remove-CsTrustedApplicationPool -Identity <XdsGlobalRelativeIdentity> [-Confirm [<SwitchParameter>]] [-Force <SwitchParameter>] [-WhatIf [<SwitchParameter>]]

Examples

EXAMPLE 1

This example removes the pool with the FQDN TrustPool.litwareinc.com. We use the Identity parameter to specify the FQDN of the pool we want to remove. Because identities are unique, this command will remove, at most, one pool.

Copy Code
Remove-CsTrustedApplicationPool -Identity TrustPool.litwareinc.com

EXAMPLE 2

This example removes all trusted pools where the FQDN of the pool begins with the string “trust”. The first part of the command is a call to the Get-CsTrustedApplicationPool cmdlet, which retrieves a collection of all trusted application pools in your Lync Server infrastructure. This collection is piped to the Where-Object cmdlet. The Where-Object cmdlet checks each item in the collection to see whether the PoolFqdn matches the wildcard string trust*. This will result in a collection of all trusted application pools with a PoolFqdn that begins with the string trust followed by any character or characters. Finally, this collection is piped to the Remove-CsTrustedApplicationPool cmdlet, which removes every item in the collection.

Copy Code
Get-CsTrustedApplicationPool | Where-Object {$_.PoolFqdn -match "trust*"} | Remove-CsTrustedApplicationPool

Detailed Description

It is recommended that the computers that are running trusted applications within a Lync Server deployment be added to a separate pool that is only for trusted applications. However, you can add trusted application computers to an existing pool that is also used for other purposes. This cmdlet removes an existing trusted application pool. However, you cannot remove a trusted application pool that does not have a Registrar value. If the trusted application pool has not been assigned a Registrar, you must add a Registrar value with the Set-CsTrustedApplicationPool cmdlet, and then remove the pool.

Keep in mind that removing the pool also removes all computers, applications, and application endpoints associated with that pool.

Who can run this cmdlet: By default, members of the following groups are authorized to run the Remove-CsTrustedApplicationPool cmdlet locally: RTCUniversalServerAdmins. To return a list of all the role-based access control (RBAC) roles this cmdlet has been assigned to (including any custom RBAC roles you have created yourself), run the following command from the Windows PowerShell prompt:

Get-CsAdminRole | Where-Object {$_.Cmdlets –match "Remove-CsTrustedApplicationPool"}

Parameters

Parameter Required Type Description

Identity

Required

Microsoft.Rtc.Management.Xds.XdsGlobalRelativeIdentity

The fully qualified domain name (FQDN) or service ID of the pool you want to remove.

Confirm

Optional

System.Management.Automation.SwitchParameter

Prompts you for confirmation before executing the command.

Force

Optional

System.Management.Automation.SwitchParameter

Suppresses any confirmation prompts that would otherwise be displayed before making changes.

WhatIf

Optional

System.Management.Automation.SwitchParameter

Describes what would happen if you executed the command without actually executing the command.

Input Types

Microsoft.Rtc.Management.Xds.DisplayExternalServer object. Accepts pipelined input of trusted application pool objects.

Return Types

This cmdlet does not return a value. It removes an object of type Microsoft.Rtc.Management.Xds.DisplayExternalServer.

See Also