Use IPdeny to create Mail flow rules (transport rules) in Exchange Online

This PowerShell script will help an Office 365 administrator or Exchange Online administrator block incoming email messages originating from specific countries using data from IPdeny. About IPdeny country block downloads IPdeny compiles raw data from regional internet registries and offers free of charge country IP address block downloads. Their country IP zone files can be …

Exchange Get-MailboxStatistics with user Alias

Exchange has a nice PowerShell cmdlet called Get-MailboxStatistics, which by default, will output DisplayName, ItemCount, StorageLimitStatus, and LastLogonTime — like so: 1 2 3 4 5 [PS] C:\temp>Get-Mailbox -Identity [email protected] | Get-MailboxStatistics | Format-Table -AutoSize   DisplayName ItemCount StorageLimitStatus LastLogonTime ———– ——— —————— ————- Last, First 29665 NoChecking 2/4/2016 9:57:33 PM[PS] C:\temp>Get-Mailbox -Identity [email protected] | …