Find parent path to a mail enabled public folder

In EMC of Exchange 2010 you can use the following command to show the parent path to a mail-enabled public folder:

get-recipient address@domain.com | Get-MailPublicFolder  | Get-PublicFolder

Name                                         Parent Path
----                                         -----------
address@domain.com                           \folder1\folder2

2 Kommentare :: Find parent path to a mail enabled public folder

  1. Get-MailPublicFolder "PublicFolderName" | Get-PublicFolder

    The output will look something like this:

    Name Parent Path
    ---- -----------
    PublicFolderName \ParentFolderName

  2. Passing Get-MailPublicFolder into Get-PublicFolder will fail with the transformation of Identity.

Post a Comment