Link to home
Start Free TrialLog in
Avatar of LB1234
LB1234

asked on

Need Exchange 2013 powershell command that will list in GB prohibit send, prohibit receive, and issue warning settings

Need Exchange 2013 powershell command that will list in GB prohibit send, prohibit receive, and issue warning settings.  If this could in some sort of neat columnar arrangement, that would be a bonus.  Thanks.
ASKER CERTIFIED SOLUTION
Avatar of Carol Chisholm
Carol Chisholm
Flag of Switzerland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Or this one for on-screen:

get-mailbox -server <server> -ResultSize unlimited |Where {$_.UseDatabaseQuotaDefaults -eq $false} |ft DisplayName,IssueWarningQuota,ProhibitSendQuota,@{label="TotalItemSize(MB)";expression={(get-mailboxstatistics $_).TotalItemSize.Value.ToMB()}}

From here:
http://social.technet.microsoft.com/Forums/exchange/en-US/454351f8-bc30-4631-ac0c-077d913fb598/powershell-script-to-generate-quota-mailbox-size-report