Category Exchange 2013

POP3 is not working in Microsoft Exchange Server

POP3 is not working on Microsoft Exchange Server Check POP3 service Status: Open Exchange Powershell and run the below command; Get-ServerComponentstate -Identity SERVERNAME Server Component State SERVERNAME ServerWideOffline Active SERVERNAME HubTransport Active SERVERNAME FrontendTransport Active SERVERNAME Monitoring Active SERVERNAME RecoveryActionsEnabled…

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…

Message Tracking CMDlets

Exchange Message Tracking PowerShell CMDlets Search by Message ID Get-ExchangeServer | get-messagetrackinglog -MessageID “<messageID>” -Start “5/16/2012 12:01:00 AM” -End “5/16/2012 11:59:00 PM” | fl Timestamp,ClientIp,ClientHostname,ServerIp,ServerHostname,Source,EventId,MessageId, @{Name=”Recipients”;Expression={$_.recipients}},@{Name=”Recipientstatus”;Expression={$_.recipientstatus}},TotalBytes,MessageSubject,Sender,ReturnPath,MessageLantency Search by Sender Get-ExchangeServer | get-messagetrackinglog -sender [email protected] -Start “11/15/2012 12:00:00 AM” -End “11/16/2012…