PowerShell Logo Small

Grant-ADAuthenticationPolicySiloAccess



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

Grants permission to join an authentication policy silo.

SYNTAX


Grant-ADAuthenticationPolicySiloAccess [-Identity] <ADAuthenticationPolicySilo> [-Account] <ADAccount> [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>]
[-PassThru] [-Server <String>] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Grant-ADAuthenticationPolicySiloAccess cmdlet grants permission to an account to join an authentication policy silo in Active Directory® Domain Services.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=288446
Revoke-ADAuthenticationPolicySiloAccess

REMARKS

<

Examples


Example 1: Grant access to an authentication policy silo to a user account

PS C:\>Grant-ADAuthenticationPolicySiloAccess -Identity AuthenticationPolicySilo01 -Account User01



This command grants access to the authentication policy silo named AuthenticationPolicySilo01 to the user account named User01.




Example 2: grant access to an authentication policy silo for filter matches

PS C:\>Get-ADComputer -Filter 'Name -like "newComputer*"' | Grant-ADAuthenticationPolicySiloAccess -Identity AuthenticationPolicySilo01



This example first uses the Get-ADComputer cmdlet to get a list of computers that match the filter specified by the Filter parameter. The output is then passed to the
Grant-ADAuthenticationPolicySiloAccess to grant access to the authentication policy silo named AuthenticationPolicySilo02.