PowerShell Logo Small

Get-ADCentralAccessRule



This is the built-in help made by Microsoft for the command 'Get-ADCentralAccessRule', 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 rules from Active Directory.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Get-ADCentralAccessRule cmdlet retrieves central access rules from Active Directory.



<

RELATED LINKS

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

REMARKS

<

Examples


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

PS C:\>Get-ADCentralAccessRule -Filter *



This command retrieves a list of all central access rules.




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

PS C:\>Get-ADCentralAccessRule -Filter { ResourceCondition -like "*Department*" }



This command retrieves the central access rules that have Department in its resource condition.




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

PS C:\>Get-ADCentralAccessRule -Identity "Financial Documents Rule"



This command retrieves a central access rule named Finance Documents Rule.