Yeah, it gets a bit more complicated when dealing with mailboxes with a non-english language. I usually do this when i need to manipulate the calendar in scripts:Given a mailbox $mbx:$calName =($mbx | Get-MailboxFolderStatistics -DomainController $dc -FolderScope Calendar | where{$_.FolderType -eq "Calendar"}).Name$folderName = ($mbx.PrimarySmtpAddress).toString() + ":\" + $calName
↧