How to remove an organization whose status is "PendingCompletion" in Exchange 2010 SP1 /hosting

I am running with Website panel for managing Exchange 2010 SP1 with /hosting switch, but I got failed when creating some organizations. 

Get-Organization shows the OrganizationStatus is "PendingCompletion", I tried 
Remove-Organization even with -Force, no luck. It always says 

"You can't remove organization "xxxxx" because it isn't active.
    + CategoryInfo          : InvalidArgument: (:) [Remove-Organization], OrganizationPendingOperationException
    + FullyQualifiedErrorId : 6D503EE2,Microsoft.Exchange.Management.Deployment.RemoveOrganization"
Finally, I fixed it with following steps:
1. Open ADSIEdit.msc, locate to CN=SilverASP,CN=ConfigurationUnits,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=domain,DC=com
2. In right pane, right click on "CN=Configuration" record to open Properties page
3. Find attribute named "msExchSetupStatus", change value from "2" to "1"
4. Go back to Exchange CAS server, use Get-Organization to check the status, now should be "Active"
5. Remove-Organization, if not worked, try add -Force.

Leave a comment

Recent Entries

  • Exchange 日志文件详解(上):基础知识

    1. ESE - Extensible Storage Engine 可扩展存储引擎众所周知,Exchange 的邮件数据库文件是 .edb,实际上是ESE 数据库,它采用 B+ tree 平衡树结构来存储数据,如下图所示,树的根级别的节点个数与树的叶级别的节点个数总是相同的。因此,树是平衡的。详情这里不再展开,感兴趣的可以自行查找相关资料。Figure 1 - 平衡树结构示意图目前,有四个正在使用的 ESE 版本:• ESE97 Exchange Server 5.5 中的数据库引擎。• ESENT 用于 Active Directory...

  • How to remove an organization whose status is "PendingCompletion" in Exchange 2010 SP1 /hosting

    I am running with Website panel for managing Exchange 2010 SP1 with /hosting switch, but I got failed when creating some organizations. Get-Organization shows the OrganizationStatus...

  • 久违了,最近时间太忙,连博客服务器都忘记开了。

    久违了,最近时间太忙,连博客服务器都忘记开了。 今天重新开机,升级到 4.37。我会继续在这分享技术和心得,谢谢大家捧场。...

  • Lync Server 2010 发布架构报错

    昨天想试试在现有的 OCS 2007 R2 的基础上部署 Lync Server 2010 试试看,装好 Topology Builder 之后,新建了一个拓扑,然后把该填的都填了,发布的时候老是报SQL错,很是郁闷,后来终于在log中找到了错误原因:  Script result: ERROR_VALIDATE_BAD_SQL_VERSION Error: Script failed (code "ERROR_VALIDATE_BAD_SQL_VERSION") when installing "CentralMgmtStore" on "LyncServer01.mail2any.local"....

  • 使用 URL Rewrite 重定向 Http 请求至 Https

    公司部署了个新的 IIS 站点,需要强制在 Https 下面访问,但是又不希望关掉80端口的 Http 请求,这样对用户体验来讲不好,最好是能强制所有的 Http 请求都会被重定向到 Https 上面去,显然, IIS 自带的 "HTTP Redirect" 已经不能满足这个需求,我们这里使用 IIS 7.0 下面的重定向扩展 URL Rewrite Module 来做。1. http://www.iis.net/download/URLRewrite 到这里下载,有分...

Close