PowerShell Logo Small

Get-ADAuthenticationPolicySilo



This is the built-in help made by Microsoft for the command 'Get-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

Gets one or more Active Directory Domain Services authentication policy silos.

SYNTAX


Get-ADAuthenticationPolicySilo [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Properties <String[]>] [-ResultPageSize <Int32>] [-ResultSetSize <Int32>]
[-Server <String>] -Filter <String> [<CommonParameters>]
Get-ADAuthenticationPolicySilo [-Identity] <ADAuthenticationPolicySilo> [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Properties <String[]>] [-Server
<String>] [<CommonParameters>]
Get-ADAuthenticationPolicySilo [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Properties <String[]>] [-ResultPageSize <Int32>] [-ResultSetSize <Int32>]
[-Server <String>] -LDAPFilter <String> [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-ADAuthenticationPolicySilo cmdlet gets an authentication policy silo or performs a search to get authentication policy silos.


The Identity parameter specifies the Active Directory Domain Services authentication policy silo to get. 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.


You can search for and use multiple authentication policies by specifying the Filter parameter or the LDAPFilter parameter. The Filter parameter uses the Windows PowerShell®
expression language to write query strings for Active Directory Domain Services. Windows PowerShell expression language syntax provides rich type conversion support for
value types received by the Filter parameter. For more information about the Filter parameter syntax, type Get-Help about_ActiveDirectory_Filter. If you have existing LDAP
query strings, you can use the LDAPFilter parameter.



<

RELATED LINKS

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

REMARKS

<

Examples


Example 1: Get an authentication policy silo object

PS C:\>Get-ADAuthenticationPolicySilo -Identity AuthenticationPolicySilo01



This command gets an authentication policy silo object named AuthenticationPolicySilo01.




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

PS C:\>Get-ADAuthenticationPolicySilo -Filter 'Name -like "*AuthenticationPolicySilo*"' | Format-Table Name, Enforce -AutoSize
Name Enforce
---- -------
silo True
silos False



This command gets all the authentication policy silos that match the filter specified by the Filter parameter. The output is then passed to the Format-Table cmdlet to
display the name of the policy and the value for Enforce on each policy.




Example 3: Get all properties of a specific authentication policy silo

PS C:\>Get-ADAuthenticationPolicySilo -Identity AuthenticationPolicySilo02 -Properties *



This command gets all properties for the authentication policy silo named AuthenticationPolicySilo02.