see who has calendar permissions with linked mailboxes
Hello I am looking for a way to see who has wich calendar permissions on a linked mailbox Now if i use powershell i use the "Get-MailboxPermission"command like this: Get-MailboxPermission -Identity firstname.lastname@domainname.com That gives me results, but according to the docs is should use ":\Calendar"behind the firstname.lastname@DomainA.com like this. Get-MailboxPermission -Identity firstname.lastname@domainname.com:\Calendar for Calendar permissions but then i get a The operation couldn't be performed because object 'firstname.lastname@DomainA.com:\Calendar' couldn't be found on exchange-servername@DomainB.global Can anyon help me with the right commands or explain me how to get this information otherwise. Regards, Fr-ncis
August 31st, 2012 4:42am

On Fri, 31 Aug 2012 08:29:32 +0000, fr-ncis wrote: > > >Hello > >I am looking for a way to see who has wich calendar permissions on a linked mailbox > >Now if i use powershell i use the "Get-MailboxPermission"command like this: Get-MailboxPermission -Identity firstname.lastname@domainname.com > >That gives me results, but according to the docs is should use ":\Calendar"behind the firstname.lastname@DomainA.com like this. Get-MailboxPermission -Identity firstname.lastname@domainname.com:\Calendar > > > >for Calendar permissions but then i get a The operation couldn't be performed because object 'firstname.lastname@DomainA.com:\Calendar' couldn't be found on exchange-servername@DomainB.global > >Can anyon help me with the right commands or explain me how to get this information otherwise. Mailbox and folder permission aren't the same thing. Use this (if you're running Exchange 2010): Get-MailboxFolderPermission --- Rich Matheisen MCSE+I, Exchange MVP --- Rich Matheisen MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
August 31st, 2012 5:46pm

Hi, You can use the following command: Get-Mailbox -RecipientTypeDetails EquipmentMailbox | foreach {Get-MailboxFolderPermission -Identity "$_.alias"+":\Calendar"} Thanks, Simon
September 3rd, 2012 5:32am

Hi, You can use the following command: Get-Mailbox -RecipientTypeDetails EquipmentMailbox | foreach {Get-MailboxFolderPermission -Identity "$_.alias"+":\Calendar"} Thanks, Simon
Free Windows Admin Tool Kit Click here and download it now
September 3rd, 2012 5:46am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics