Skip to main content

Posts

Showing posts with the label #ExchangePowerShell

Multi-Geo Capabilities in Exchange Online

Multi-Geo capability available for OneDrive and Exchange Online. This will be more important news for global customers who is having office in different locations across the world including APAC :) . We talk about many parameters related to network performance but if latency to mailbox or our data is high every feature will performing bad. We + many people raise this to product team on many discussion and now its available.  Still there will be one billing location or address and tenant location where the default location and rest of the location will be satellite. This allow you following,  - to create new Exchange online mailbox directly in satellite - Move existing mailbox to satellite - Onboard a mailbox from an on-Prem to satellite  currently feature will be available at US, UK, Asia Pacific, Korea, Japan, France, European Union, Canada, Australia & India* Process > Microsoft needs to configure your tenant for Multi-Geo #multi-geo support and t...

How to check exchange message Tracking Logs 2010/2013

Its nothing but taking a log to understand how much transaction which worked in Mailbox Server in other words it will be recipients and Senders transitions. How we will get this out? Run following ( PowerShell )   Get-transportserver | get-messagetrackinglog -start "08/10/2016" -end "08/20/2016" -Resultsize Unlimited | export-csv C\:messagetrackinglog.csv     Get-TransportServer will help you to get connected to all the Transport Server Roles which is in your domain and the result will move to Get-MessageTrackingLog to perform Message Tracking Log for given duration. Not only duration you need define Result size also because if you try Get-MessageTrackingLog it only give 1000 messages.   Note: Define a duration for reduce the time and also size of the data. Will try different scenarios   C:\>Get-MessageTrackingLog -Sender user31@pfelabs.local  - you need to change the domain try on your lab or Live environm...