Commands › Exchange Online

Get-PublicFolderClientPermission

Exchange Online ExchangeOnlineManagement Get-*

Retrieve the user permissions for a public folder.

Quick start script

# Get-PublicFolderClientPermission — 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-PublicFolderClientPermission -Identity <PublicFolderIdParameter> | Format-List

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

Syntax

Get-PublicFolderClientPermission [-Identity] <PublicFolderIdParameter>
 [-DomainController <Fqdn>]
 [-ResultSize <Unlimited>]
 [-Server <ServerIdParameter>]
 [-User <PublicFolderUserIdParameter>]
 [-Mailbox <MailboxIdParameter>]
 [<CommonParameters>]

Parameters (6)

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 This parameter is available only in on-premises Exchange.
-ResultSize Unlimited This parameter is available only in the cloud-based service.
-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 PublicFolderUserIdParameter The User parameter specifies the user for whom you want to view the permissions on the public folder.
-Mailbox MailboxIdParameter The Mailbox parameter specifies the public folder mailbox that you want to view the permissions for. You can use any value that uniquely identifies the mailbox. For example:

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