发现微软 Exchange 2007 数据库以最少的邮箱,然后使用从文本文件中检索到的信息,以便在该数据库中配置邮箱。感谢尼克 · 史密斯 (http://msexchangeteam.com/archive/2007/02/21/435561.aspx) 发现数据库的脚本部分。
PowerShell
#Change “ServerName” and Path to filename
$DB = (Get-Mailbox -server “ServerName” -ResultSize:Unlimited | Group-Object -Property:Database |
Sort-Object -Property:Count | Select-Object -Property:Name)[0]
Import-Csv c:\scripts\newMBX.csv | foreach {enable-mailbox -Identity $_.alias -Alias $_.alias -Database $DB.Name}
Latest posts by Exchange中文站 (see all)
- 微软将推出卫星解决方案:可连接到 Azure 云服务 - 2020年9月17日
- Windows Terminal 1.0正式发布 - 2020年5月25日
- Azure Lighthouse 相关介绍 - 2020年3月2日
发布于:
浏览:1136 次
还没有评论