Forum Discussion

Amina28's avatar
Amina28
Copper Contributor
Nov 14, 2025

Exchange 2019 AvailableNewMailboxSpace

Hello!

Colleagues,
have you encountered a situation where Exchange 2019 does not provide accurate information about the amount of free space in databases (AvailableNewMailboxSpace) via EMS?

Using this command: Get-MailboxDatabase -Status | Sort-Object Name | Select-Object Name,@{Name=‘DB Size (GB)’; Expression={[math]::Round($_.DatabaseSize.ToGb(),2)}},@{Name=‘Free Space (GB)’;Expression={[math]::Round($_.AvailableNewMailboxSpace.ToGb(),2)}} | Format-Table -AutoSize

Exchange 2016 displays the information correctly, but 2019 does not display it correctly in gigabytes or the numbers are unclear.

Do you know of another way?

Thank you!

1 Reply

  • Hi,
    Run the following command in EMS to check AvailableNewMailboxSpace:

    Get-MailboxDatabase -Status | select Name, DatabaseSize, AvailableNewMailboxSpace

Resources