Get a List of the Top Exchange Server Mailboxes by Size with CSV file

Get a List of the Top Exchange Server Mailboxes by Size with CSV file

    Get-Mailbox -ResultSize Unlimited | Get-MailboxStatistics | Sort-Object TotalItemSize -Descending | Select-Object DisplayName,TotalItemSize -First 100 | Export-CSV c:\top100mailboxes.csv         Regards,   Kon Belieu Partner Kon@cxit.com   |  513-575-3500 4440 Lake Forest Dr., Suite 102B, Cincinnati, OH  45242  

Larger e-mails not being accepted when sent from IPhones with Exchange

Larger e-mails not being accepted when sent from IPhones with Exchange

Configure client-specific message size limits   From: https://docs.microsoft.com/en-us/exchange/configure-client-specific-message-size-limits-exchange-2013-help?redirectedfrom=MSDN   Applies to: Exchange Server 2013 In Microsoft Exchange Server 2013, there are several different message size limits that apply to messages as they travel through your Exchange organization. For more information, see Message size limits. However, there are client-specific message size limits you can configure for Outlook Web…

Disabling a users is the safest Option

If you’re having trouble remember the correct usage of these tasks think about it in terms of the Exchange Management Shell commands and how they pair up. ·        Enable-Mailbox is for creating a mailbox for an existing user, and Disable-Mailbox removes only the Exchange attributes from the user account ·        New-Mailbox is for creating a new AD user and…

Export all Exchange 2010 email addresses to a CSV file

Using Exchange Management Shell: Exchange management shell will export all the Full Name and Email Addresses and save them to C:\customer.csv   GET-MAILBOX -RESULTSIZE UNLIMITED |SELECT-OBJECT DISPLAYNAME,SERVERNAME,PRIMARYSMTPADDRESS, @{NAME=“EMAILADDRESSES”;EXPRESSION={$_.EMAILADDRESSES |WHERE-OBJECT {$_.PREFIXSTRING -CEQ “SMTP”} | FOREACH-OBJECT {$_.SMTPADDRESS}}} | EXPORT-CSV C:\CUSTOMER.CSV -NOTYPEINFORMATION