积极答复者
EXCHANGE2010无法删除邮箱数据库

问题
-
--------------------------------------------------------
Microsoft Exchange 错误
--------------------------------------------------------
无法删除邮箱数据库'MDB01'。
MDB01
失败
错误:
此邮箱数据库与一个或多个活动 MailboxImport 队列关联。要获取与此数据库关联的所有 MailboxImport 请求的列表,请运行 Get-MailboxImportRequest | ?{ $_.RequestQueue -eq"<Database ID>"}。要删除 MailboxImport 请求,请运行 Remove-MailboxImportRequest <Recipient ID\Request Name>。
答案
-
你好,
我之前遇到过类似的案例,是由于失败的导入请求没有清理导致的,建议你查看是否有同样的问题。
Get-MailboxImportRequest -Status Failed -Database MDB01
下面的案例供你参考:
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.
Niko Cheng
TechNet Community Support- 已标记为答案 梧桐1 2015年8月6日 6:01
全部回复
-
你好,
我之前遇到过类似的案例,是由于失败的导入请求没有清理导致的,建议你查看是否有同样的问题。
Get-MailboxImportRequest -Status Failed -Database MDB01
下面的案例供你参考:
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.
Niko Cheng
TechNet Community Support- 已标记为答案 梧桐1 2015年8月6日 6:01
-
使用Remove-MailboxImportRequest指令删除,具体参考:
https://technet.microsoft.com/zh-CN/library/Ff607311(v=exchg.141).aspx
谢谢!
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.
Niko Cheng
TechNet Community Support -
我使用如下命令 Remove-MailboxImportRequest -Identity "mail.local/bgt//傅强\MailboxImport1"可以
一条一条地删除该命令Get-MailboxImportRequest -Status Failed -Database MDB01列出的失败邮箱,但请看下例:
MailboxImport Failed
MailboxImport mail.local/bgt//傅强 Failed
MailboxImport mail.local/cwb/cww1... Failed其中第一条mailbox名称是空的,第三条是“ mail.local/cwb/cww1...”由于名称超长无法完全显示,这应如何删除?谢谢