Month: August 2016
Posted by Harri Jaakkonen Posted on 25/08/2016 0 Comments on Assign Permissions to all mailboxes using Mail Enabled Security Group.
Posted in Active Directory, Exchange, Powershell
Hi, Add all users that need the following rights to a Mail Enabled Security Group. Then add permissions to calendars with this script: $allmailbox = Get-Mailbox -Resultsize Unlimited -Filter {RecipientTypeDetails -eq ‘usermailbox’} Foreach ($Mailbox in $allmailbox) { $path =…
Posted in Active Directory, Powershell
Hi, Powershell is the way. Open powershell and type: import-module activedirectory Then. $strSID=”Enter SID Here” $uSid = [ADSI]”LDAP://<SID=$strSID>” echo $uSid Have a nice one,