默认分类 Exchange 给会议室日历添加全员可看但是不能编辑的权限 ``` # 语法:Set-MailboxFolderPermission -Identity "会议室邮箱:\日历" -User "授权用户邮箱" -AccessRights 权限级别 # 示例1:给用户"user1@contoso.com"分配“Editor(编辑所有)”权限 Set-MailboxFolderPermission -Identity "Shanghai-ConferenceRoom1@contoso.com:\Calendar" -User "user1@contoso.com" -AccessRights Editor # 示例2:给用户"user2@contoso.com"分配“Author(编辑自己创建的)”权限 Set-MailboxFolderPermission -Identity "Shanghai-ConferenceRoom1@contoso.com:\Calendar" -User "user2@contoso.com" -AccessRights Author # 验证权限:查看已配置的权限 Get-MailboxFolderPermission -Identity "Shanghai-ConferenceRoom1@contoso.com:\Calendar" | Select-Object User, AccessRights ``` 阅读全文 2026-01-21 丿记性不太好丶 0 条评论 157 次浏览
默认分类 ExchangeOWA会议室列表创建以及添加 ``` 必须为每个会议室设置 City 属性,否则 Outlook 无法按城市筛选显示 Set-Place -Identity "SH-Room1@yourdomain.com" -City "上海" -Building "上海总部" Set-Place -Identity "SH-Room2@yourdomain.com" -City "上海" -Building "上海总部" Set-Place -Identity "SH-Room3@yourdomain.com" -City "上海" -Building "上海总部" # 创建上海会议室列表 New-DistributionGroup -Name "SH_MeetingRooms" ` -DisplayName "上海会议室" ` -Alias "SH_MeetingRooms" ` -PrimarySmtpAddress "SH_MeetingRooms@yourdomain.com" ` -RoomList ` -ManagedBy "admin@yourdomain.com" # 添加上海会议室到上海列表 Add-DistributionGroupMember -Identity "SH_MeetingRooms" -Member "SH-Room1@yourdomain.com" Add-DistributionGroupMember -Identity "SH_MeetingRooms" -Member "SH-Room2@yourdomain.com" Add-DistributionGroupMember -Identity "SH_MeetingRooms" -Member "SH-Room3@yourdomain.com" # 查看会议室列表成员 Get-DistributionGroupMember -Identity "SH_MeetingRooms" Get-DistributionGroupMember -Identity "TJ_MeetingRooms" Get-DistributionGroupMember -Identity "NJ_MeetingRooms" # 查看会议室位置属性 Get-Place -Identity "SH-Room1@yourdomain.com" | Select-Object Name,City,Building ``` 阅读全文 2026-01-21 丿记性不太好丶 0 条评论 158 次浏览
默认分类 连接器速率 ``` Set-ReceiveConnector -Identity "Servername\Client Frontend Servername" -MessageRateLimit 20 Set-ReceiveConnector -Identity "Servername\Client Proxy Servername" -MessageRateLimit 20 ``` ``` New-ThrottlingPolicy -Name LimitSent -MessageRateLimit 20 -ThrottlingPolicyScope Regular Set-ThrottlingPolicyAssociation -Identity testuser -ThrottlingPolicy LimitSent Get-ThrottlingPolicyAssociation -Identity testuser ``` ``` Stop-Service MSExchangeTransport Start-Service MSExchangeTransport Get-Service MSExchangeTransport ``` 阅读全文 2026-01-07 丿记性不太好丶 0 条评论 124 次浏览
默认分类 调整M365附件大小 1.查当前大小 Get-Mailbox |Format-List MaxSendSize,MaxReceiveSize 2.修改为150M Get-Mailbox| set-Mailbox -MaxSendSize 150mb -MaxReceiveSize 150mb 阅读全文 2026-01-07 丿记性不太好丶 0 条评论 115 次浏览
默认分类 统计用户邮件数量 ``` Get-MailboxStatistics -Identity "用户名" | Select-Object DisplayName, ItemCount, DeletedItemCount ``` 阅读全文 2025-12-25 丿记性不太好丶 0 条评论 154 次浏览