From Exchange Shell
$mailpf = get-mailpublicfolder emailaddress@domain.com get-publicfolder $mailpf.entryID
From Exchange Shell
$mailpf = get-mailpublicfolder emailaddress@domain.com get-publicfolder $mailpf.entryID
Exchange management shell
get-mailpublicfolder mail@domain.com | get-publicfolderstatistics |select AdminDisplayName, FolderPath
If you want to set rights on Calendar object, you need to know the name of the folder.
The name of the folder is localized.
$username = "Test user" $calname = Get-MailboxFolderStatistics -Identity $username -FolderScope calendar | where-object {$_.FolderType -eq "Calendar"} $calendar = $username + ":\" + $calname.Name.toString()