Exchange 2010 卸载过程中报错
Exchange 2010 卸载过程中报错Exchange 2010 卸载过程中报mailbox database 还是有邮箱的错误,导致卸载不能进行下去。您用get-mailbox命令查看并未发现有任何邮箱。
如果我的理解有任何错误,请给告诉我。
根据我的经验,这种情况可能是由于Exchange 2010 system mailbox的存在导致的。
在Exchange 2010中,系统邮箱由 Active Directory 林的根域中的 Exchange 在安装过程中创建。用户或管理员不能登录到这些邮箱。如果要停止使用组织中最后一台 Exchange 2010 邮箱服务器或者删除默认的第一个邮箱数据库,您应该首先使用 Disable-Mailbox cmdlet 禁用这些系统邮箱。停用包含这些系统邮箱的邮箱服务器时,应该将这些系统邮箱移到另一个邮箱服务器中或者邮箱数据库中,以确保不会丢失功能。
系统邮箱主要是为邮件审批和“多邮箱搜索”等 Exchange 2010 功能而创建,默认有下面三种:
发现
SystemMailbox {e0dc1c29-89c3-4034-b678-e6c29d823ed9}
邮件审批
SystemMailbox {1f05a927-xxxx- xxxx - xxxx -xxxxxxxxxxxx}
其中,x 是随机分配的数字
联合电子邮件
FederatedEmail 4c1f4d8b-8179-4148-93bf-00a95fa1e042
我们可以用 Get-mailbox –arbitration 这个命令来查看这个3个邮箱。或者您也可以在ADSIEdit 的Users 容器下找到这3个系统邮箱。
找到这3个邮箱后,你可用以下命令去disable这些邮箱,然后就可以卸载Exchange 2010了。
Disable-Mailbox "SystemMailbox{e0dc1c29-89c3-4034-b678-e6c29d823ed9}" -Arbitration
Disable-Mailbox "SystemMailbox{1f05a927-xxxx- xxxx - xxxx -xxxxxxxxxxxx}" –Arbitration (不知道为啥这个命令禁止不掉该邮箱)
Disable-Mailbox "FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042" –Arbitration
get-mailbox -arbitration | fl name,>
remove-mailbox -identity "<identity from above>" –arbitration
remove-mailbox -identity "SystemMailbox{1f05a927-xxxx- xxxx - xxxx -xxxxxxxxxxxx}"–arbitration
页:
[1]