移除邮箱自动映射功能,在添加邮箱完全访问权限时,需要移除、重新添加权限。使用脚本为单个邮箱或者多个邮箱进行该工作。
步骤如下:
1)下载该PowerShell脚本;
2)打开Exchange Management Shell,定位到脚本下载的位置;
3)运行下列命令导入功能。
. .\Remove-Automapping.ps1
移除单个邮箱自动映射,运行下列命令:
Remove-Automapping -Mailbox finance1
移除所有邮箱自动映射,运行下列命令:
Get-Mailbox -ResultSize Unlimited | % {Remove-Automapping -Mailbox $_.Alias}
在特定组织单元移除所有邮箱自动映射,运行下列命令:
Get-Mailbox -ResultSize Unlimited -OrganizationalUnit “OU=Users,OU=Litwareinc.com,DC=litwareinc,DC=com” | % {Remove-Automapping -Mailbox $_.Alias}
Latest posts by Exchange中文站 (see all)
- 微软将推出卫星解决方案:可连接到 Azure 云服务 - 2020年9月17日
- Windows Terminal 1.0正式发布 - 2020年5月25日
- Azure Lighthouse 相关介绍 - 2020年3月2日
发布于:
浏览:2550 次
还没有评论