2008-11-26

Removing last Exchange 2007 server from your organization

Had to uninstall exchange serve from SBS 2008, as it was the last Exchange server in organization I encountered number of problems trying to uninstall it.

One of those problems are that you cannot uninstall Exchange server while it contains Public Folder Replicas and you can't move them to another server because there is none.

Browsing the web I was finally able to solve this problem, for full artcile just follow the link and read the comments.
Here's summary:

1. You'll have to keep at least one mailbox with administrator rights.
2. Open Power-Shell and enter the following commands:

Get-PublicFolder -Server "\" -Recurse -ResultSize:Unlimited | Remove-PublicFolder -Server -Recurse -ErrorAction:SilentlyContinue

Get-PublicFolder -Server "\Non_Ipm_Subtree" -Recurse -ResultSize:Unlimited | Remove-PublicFolder -Server -Recurse -ErrorAction:SilentlyContinue

3. Remove all mailboxes on your server.
4. Remove Exchange 2007 server from "Programs and Features" in control panel.

Links:
http://blogs.technet.com/asiasupp/archive/2007/06/26/public-folder-replicas-prevent-uninstall-exchange-2007.aspx

1 comment:

  1. Anonymous9.11.10

    You may also need the following to get rid of offline address book and public folder database before removing the mailbox role.

    get-offlineaddressbook | remove-offlineaddressbook
    get-publicfolderdatabase | remove-publicfolderdatabase

    ReplyDelete