标签:示例 col 恢复 技术分享 点击 change for 绑定 win
禁用邮箱的过程是断开活动目录用户和邮箱之间的连接,恢复已禁用的邮箱,是将活动目录用户和邮箱重新连接。Get-Mailbox mailuser10
Disable-Mailbox mailuser10
Get-MailboxStatistics -Database DB01 | Where { $_.DisconnectReason -ne $null }
``Connect-Mailbox -Identity "mailuser10" -Database DB01
Get-mailbox mailuser10
[PS] C:\Windows\system32>help Update-StoreMailboxState -Examples
名称
Update-StoreMailboxState
摘要
此 cmdlet 只在本地 Exchange Server 2013 中可用。
使用 Update-StoreMailboxState cmdlet 可以将 Exchange 邮箱存储中的邮箱的邮箱状态与对应的 Active Directory 用户帐户的
状态同步
有关以下语法部分的参数设置的详细信息,请参阅语法。
-------------------------- 示例 1 --------------------------
此示例将更新位于邮箱数据库 MDB01 上并且 GUID 为 4a830e3f-fd07-4629-baa1-8bce16b86d88 的一个邮箱的邮箱状态。
Update-StoreMailboxState -Database MDB01 -Identity 4a830e3f-fd07-4629-baa1-8bce16b86d88
-------------------------- 示例 2 --------------------------
此示例将更新邮箱数据库 MDB02 上所有邮箱的邮箱状态。
Get-MailboxStatistics -Database MDB02 | ForEach { Update-StoreMailboxState -Database $_.Database -Identity $_.Mailb
oxGuid -Confirm:$false }
-------------------------- 示例 3 --------------------------
此示例将更新邮箱数据库 MDB03 上所有已断开连接的邮箱的邮箱状态。
Get-MailboxStatistics -Database DB01 | Where { $_.DisconnectReason -ne $null } | ForEach { Update-StoreMailboxState -Database $_.Database -Identity $_.MailboxGuid -Confirm:$false }
获取更多IT资讯,您也可以关注下方的微信公众号:
曾垂鑫的网络课堂,曾垂鑫大讲堂 - 51CTO学院
http://edu.51cto.com/lecturer/639838.html
Exchange Server 2016管理系列课件08.禁用和恢复已禁用的邮箱
标签:示例 col 恢复 技术分享 点击 change for 绑定 win
原文地址:http://blog.51cto.com/543925535/2067074