
Setting the exchange online max send and receive size
Quick post today around setting exchange online max send and receive size. It can be set using the GUI in mailbox properties. I prefer to use powershell when I can.
First make sure you have the latest exchange online powershell module installed.
Then connect to exchange
Connect-ExchangeOnline
if you want to see all mailboxes to the same size, use this command
Get-Mailbox | Set-Mailbox –MaxSendSize 150 MB –MaxReceiveSize 150 MB
Don’t forget to update your mailbox plan so all new mailboxes have the updated limit.
Get-MailboxPlan | Set-MailboxPlan –MaxSendSize 150MB –MaxReceiveSize 150MB
you can confirm and individual mailbox size with
get-mailbox -Identity <UserName> | fl name, MaxSendSize, MaxReceiveSize
or get a csv of all mailboxes
Get-Mailbox -ResultSize 2500| Select-Object Name,MaxSendSize,MaxReceiveSize| Export-CSV -NoTypeInformation -Path "$ENV:UserProfile\desktop\mailboxes.csv"
More Stories
Windows Deployment with the Next Generation of Windows Autopilot
Microsoft's latest update to Windows Autopilot brings significant enhancements to the deployment process of Windows devices, catering to the needs...
Shrink PowerPoint files
Need to reduce the size of your PowerPoint file that contain a large number of pictures. Give this a try...
How to find your Microsoft Exchange build number
When documenting your environment, it’s important to keep track of the build number of your Exchange server. To get the...
Micrsoft Defender for Endpoints
We use Microsoft Defender for endpoints on our physical workstations. I'm now looking at it for our servers. The servers...
Sync Active directory user data with SharePoint
If you want to sync standard common attributes from active directory to sharepoint. Its easy, AD sync to Azure AD...
Microsoft graph API to access sharepoint
Recently I've had to setup a few different app registration using Azure AD to access sharepoint sites. Once you get...