Skip to content

Instantly share code, notes, and snippets.

@tostka
Created March 29, 2018 23:05
Show Gist options
  • Save tostka/9eef00d0cbb4c9139bc7f9f9a8264a47 to your computer and use it in GitHub Desktop.
Save tostka/9eef00d0cbb4c9139bc7f9f9a8264a47 to your computer and use it in GitHub Desktop.
<# test mapi latency on a list of mailboxes#>
# one line follows...
get-content .\list.txt |
get-mailbox |
Test-MAPIConnectivity |
select Server, Database,Mailbox, Result,@{label="Latency(ms)";expression={($_.Latency.Milliseconds)}} |
ft -auto | out-default ;
@tostka
Copy link
Author

tostka commented Mar 29, 2018

gisting up old code from blog entries

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment