Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Exchange 2013 sets the maximum recipient for mailbox users

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/03 Report--

Limit the maximum number of recipients per message at the user level and open Exchange 2013 EMS

Query

Query the maximum number of recipients of all users in the company at present, and sort them in descending order

Get-Mailbox | Select DisplayName,RecipientLimits | Sort-Object-Property RecipientLimits-Descending

If the query is stored in max_recipient_list.csv

Get-Mailbox-ResultSize unlimited | Select DisplayName,RecipientLimits | Sort-Object-Property RecipientLimits-Descending | Export-CSV D:\ max_recipient_list.csv

Query the largest recipient of a user in an organizational unit

Get-User-OrganizationalUnit "guangzhou office" | where-Object {$_ .principienttype-eq "usermailbox"} | get-mailbox | select displayname,recipientlimits

Query the largest recipient of the user bill-zhang

Get-Mailbox-Identity bill-zhang | Select DisplayName,RecipientLimits modification

Set the maximum number of recipients for all mailbox users to 20

Get-Mailbox-ResultSize unlimited | Set-Mailbox-RecipientLimits 20

Set the maximum number of recipients for a user to 20

Get-Mailbox-Identity bill-zhao | Set-Mailbox-RecipientLimits 20

Set the maximum number of recipients in a mailbox database to 20

Get-Mailbox-Database "xxxxx" | Set-Mailbox-RecipientLimits 20

Set the maximum recipient of a user in an organizational unit to 20

Get-User-OrganizationalUnit "guangzhou office" | where-Object {$_ .principienttype-eq "usermailbox"} | set-mailbox-recipientlimits 20

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report