PowerShell Logo Small

Get-ADCentralAccessPolicy



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

Retrieves central access policies from Active Directory.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Get-ADCentralAccessPolicy cmdlet retrieves central access policies from Active Directory.



<

RELATED LINKS

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

REMARKS

<

Examples


-------------------------- EXAMPLE 1 --------------------------

PS C:\>Get-ADCentralAccessPolicy -Filter *



This command retrieves a list of all central access policies.




-------------------------- EXAMPLE 2 --------------------------

PS C:\>Get-ADCentralAccessPolicy -Filter {Members -eq 'Finance Documents Rule'}



This command gets the central access policies that have the central access rule Finance Documents Rule as its members.




-------------------------- EXAMPLE 3 --------------------------

PS C:\>Get-ADCentralAccessPolicy -Identity "Finance Policy"



This command gets information for a central access policy named Finance Policy.