Hello everyone,
I am responsible of exchange environment in an international organization, and I have a need to search for mailboxes' calendars that are without any
permissions for "Default".
So I went and got all mailboxes to a variable, and ran for each mailbox:
(Get-MailboxFolderPermission "$($_.Alias):\Calendar" -User Default).AccessRights
And for Japanese mailboxes (for example) I received an error that the folder doesn't exists.
So I ran before a Get-MailboxFolderStatistics, in order to get the name of the folder with the folder type "Calendar".
$FolderName = (Get-MailboxFolderStatistics $_.Alias | where FolderType -like Calendar).Name
Get-MailboxFolderPermission $($_.Alias):\$($FolderName) -User Default
But for my surprise that didn't work as well.
The error is the same error, the command can't find the folder. I believe this time it might be caused due to unsupported characters, such as the Japanese characters. Is there any way of dealing this?
I've opened a thread in "Exchange Server 2013 - Administration, Monitoring, and Performance" and they suggested I'll ask in this forum.