Exch2010 Powershell - Calendar Permissions

Soldato
Joined
5 Jul 2003
Posts
16,206
Location
Atlanta, USA
Afternoon all,
Does anyone know of any Powershell command, or a way to do it through the GUI, to set every calendar in every mailbox on Office365 to be a specific permission.
As reference, Exch2010 powershell commands mostly work, but the calendar ones ive found thus far are just for one mailbox at a time. :(

Thanks in advance.

##EDIT##
Currently trying this command: get-mailbox | Add-MailboxFolderPermission -identity "$($_.Alias):\calender" -AccessRights LimitedDetails -User Default
But its erroring with:
Code:
The input object cannot be bound to any parameters for the command either becau
se the command does not take pipeline input or the input and its properties do
not match any of the parameters that take pipeline input.
    + CategoryInfo          : InvalidArgument: (Firstname lastname:PSObject) [Add
   -MailboxFolderPermission], ParameterBindingException
    + FullyQualifiedErrorId : InputObjectNotBound,Add-MailboxFolderPermission
 
Last edited:
Back
Top Bottom