Category Exchange 2010

Introduction to Edge Transport Servers

Introduction to Edge Transport Servers Exchange Server 2016 provides two types of roles, namely the Mailbox server and Edge Transport servers. Mailbox servers contain mailbox databases that process, render, and store data, the transport services that are used to route…

Managing Mailbox Permissions CMDlets

Managing Mailbox Permissions PowerShell Commands Grant Send on Behalf of Permissions Set-Mailbox ‘[email protected]’ -GrantSendOnBehalfTo ‘[email protected]’ Add Editor permissions Add-MailboxFolderPermission -Identity ‘[email protected]’ -User ‘[email protected]’ -AccessRights Editor Add Reviewer permissions (what if) Set-MailboxFolderPermission -Identity ‘[email protected]’ -User ‘[email protected]’ -AccessRights Reviewer -whatif Getting Mailbox Folder…

Resource Rooms and Calendars CMDlets

Exchange Resource Rooms and Calendars PowerShell CMDlets Disable Double Booking of Meeting Rooms Set-CalendarProcessing -Identity ‘room’ -AllowConflicts:$false Disable Double Booking on all Meeting Rooms Get-Mailbox | where {$_.ResourceType -eq “Room” } | Set-CalendarProcessing -AllowConflicts:$false Get Status of Meeting Rooms Calendars Get-CalendarProcessing…