PowerShell Logo Small

Remove-ADAuthenticationPolicySilo



This is the built-in help made by Microsoft for the command 'Remove-ADAuthenticationPolicySilo', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Removes an Active Directory Domain Services authentication policy silo object.

SYNTAX


Remove-ADAuthenticationPolicySilo [-Identity] <ADAuthenticationPolicySilo> [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Server <String>] [-Confirm]
[-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Remove-ADAuthenticationPolicySilo cmdlet removes an Active Directory® Domain Services authentication policy silo object.


The Identity parameter specifies the Active Directory Domain Services authentication policy silo to remove. You can identify an authentication policy silo by its
distinguished name (DN), GUID or name. You can also use the Identity parameter to specify a variable that contains an authentication policy silo object, or you can use the
pipeline operator to pass an authentication policy silo object to the Identity parameter.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=296768
Get-ADAuthenticationPolicySilo
New-ADAuthenticationPolicySilo
Set-ADAuthenticationPolicySilo

REMARKS

<

Examples


Example 1: Remove an authentication policy silo object

PS C:\>Remove-ADAuthenticationPolicySilo -Identity AuthenticationPolicySilo01



This command removes the authentication policy silo object named AuthenticationPolicySilo01.




Example 2: Remove all authentication policy silo objects that match a filter

PS C:\>Get-ADAuthenticationPolicySilo -Filter 'Enforce -eq $False' | Remove-ADAuthenticationPolicySilo



This command uses the Get-ADAuthenticationPolicySilo cmdlet with the Filter parameter to get all authentication policy silos that are not enforced. The pipeline operator
then passes the result of the filter to the Remove-ADAuthenticationPolicySilo cmdlet.




Example 3: Remove all matching authentication policy silos without confirmation

PS C:\>Get-ADAuthenticationPolicySilo -Filter 'Enforce -eq $False' | Remove-ADAuthenticationPolicySilo -Confirm:$False



This command uses the Get-ADAuthenticationPolicySilo cmdlet with the Filter parameter to get all authentication policy silos that are not enforced. The pipeline operator
then passes the result of the filter to the Remove-ADAuthenticationPolicySilo cmdlet. However, because the Confirm parameter is set to $False, no confirmation messages
appear.