AAD sync runs every 30 minutes, we are several situations where you cant wait 30 minutes for a change to sync across, you still want to force a sync. To do so, on the server which has AAD Connect installed and type the following to import the AAD Connect PowerShell module: Import-Module ADSync You check the … Continue reading Force a sync from Azure AD Connect to Office 365
powershell
Create a Shared Mailbox in Exchange 2007
Create shared mailboxes in Exchange 2007 using powershell as the EMC in Exchange 2007 doesnt allow you to create shared mailboxes like the new exchange 2010. You can do this with the help of the new-mailbox cmdlet. Below is an example of creating a shared mailbox called Info and then assigning the info security group … Continue reading Create a Shared Mailbox in Exchange 2007
Manage Exchange 2010 Calendar Permissions Using Powershell
You can add Calendar Permissions Using Powershell for users using the following command: if user2 needs to access user1's calendar Add-MailboxFolderPermission -identity “user1:\calendar” –user “user2” -AccessRights Reviewer the same can be done to give permission to a security group Add-MailboxFolderPermission -identity “user1:\calendar” –user “DomainName\securitygroup” -AccessRights Reviewer Below is the list of access rights and explanation None FolderVisible … Continue reading Manage Exchange 2010 Calendar Permissions Using Powershell