Commands › Exchange Online

Get-PublicFolderAdministrativePermission

Exchange Online ExchangeOnlineManagement Get-*

Get the administrative permissions for a public folder or a public folder hierarchy.

Quick start script

# Get-PublicFolderAdministrativePermission — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org

# 2. Run and inspect
Get-PublicFolderAdministrativePermission -Identity <PublicFolderIdParameter> | Format-List

# 3. Export for evidence / drift tracking
Get-PublicFolderAdministrativePermission | Export-Clixml .\PublicFolderAdministrativePermission-$(Get-Date -Format yyyyMMdd).xml

Syntax — 2 parameter sets

Identity (Default)

Get-PublicFolderAdministrativePermission [-Identity] <PublicFolderIdParameter> [-User <SecurityPrincipalIdParameter>]
 [-DomainController <Fqdn>]
 [-Server <ServerIdParameter>]
 [<CommonParameters>]

Owner

Get-PublicFolderAdministrativePermission [-Identity] <PublicFolderIdParameter> [-Owner]
 [-DomainController <Fqdn>]
 [-Server <ServerIdParameter>]
 [<CommonParameters>]

Parameters (5)

ParameterTypeRequiredWhat it controls
-Identity PublicFolderIdParameter yes The Identity parameter specifies the GUID or public folder name that represents a specific public folder. You can also include the path using the format TopLevelPublicFolder\\PublicFolder.
-DomainController Fqdn The DomainController parameter specifies the domain controller that's used by this cmdlet to read data from or write data to Active Directory. You identify the domain controller by its fully qualified domain name...
-Owner SwitchParameter The Owner switch returns the owner of the public folder object. You don't need to specify a value with this switch.
-Server ServerIdParameter The Server parameter filters the results by the specified Exchange server. You can use any value that uniquely identifies the server. For example:
-User SecurityPrincipalIdParameter The User parameter filters the results by who has admin permissions on the specified public folder. You can specify the following types of users or groups (security principals) for this parameter:

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.