(Note: this will remove from your environment so you will have to re-create\attach mailboxes)
Recently I had a situation where I needed to fully remove and re-install Exchange on SBS2008, here is the process I was able to develop using technet, a couple blogs and trial an error
Prep For uninstall
Run Exchange Management Shell as administrator
Answer A or Y to all PS Prompts
- Remove all mailboxes
- Get-mailbox | disable-mailbox
- Remove-receive Connectors
- Get-recieveconnector | remove-recieveconnector
- Get-sendconnector | remove-sendconnector
- Remove Public Folder and oab
- Get-offlineaddressbook | remove-offlineaddressbook
- Adsiedit.msc – > Connect to : Configuration ->
- Configuration -> Configuration -> Services -> Microsoft Exchange -> First Org.. -> administrative Groups -> Exchange Admin Group.. -> Servers -> Servername -> Information Store -> Second Information Store -> Right Click and delete “Public Folder Databas
Uninstall
- Start -> control -> programs and features -> Microsoft Exchange -> uninstall -> uncheck all roles ->
- Rename Databases Folders
- From Powershell > move c:\program files\Microsoft\Exchange Server\mailbox” c:\program files\Microsoft\Exchange Server\mailbox.old”
Re-Install Exchange
- Download Exchange2007 SP1 (E2K7SP1EN64.exe) http://www.microsoft.com/downloads/details.aspx?FamilyID=44c66ad6-f185-4a1d-a9ab-473c1188954c&displaylang=en
- Create a registry value to use with Windows SBS 2008 Disc 2 (Component Technologies for Server Repair) and Microsoft Exchange Server 2007 by doing the following:
- Open Registry Editor.
- On the User Account Control page, click Continue.
- Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Products\461C2B4266EDEF444B864AD6D9E5B613\SourceList\Media.
- Create a new string value named MediaPackage: Right-click Media, click New, click String Value, in Name type MediaPackage, and then press ENTER.
- Double-click MediaPackage, in Edit String, in Value data, type \CMPNENTS\Exchange12\, and then click OK.
- Close Registry Editor.
- Open Registry Editor.
- Run the Setup from the extracted Directory, Rt click Setup and Run As Administrator
- Click Step 4: Install Microsoft Exchange Server 2007 Sp1
- Next -> Select Mailbox\CAS\HUB
- Enter Org Name (Default is “First Organization”)
- Next
SBS Roles Reinstall Script
- Run Windows PowerShell commands by doing the following:
- Copy and paste the following cmdlets into a text file: (Run Notepad as administrator)
$LocalServerName = hostname$ActiveSyncMailboxName = “Windows SBS Mobile Mailbox Policy” + ” ” + $LocalServerName $OABVDir = $LocalServerName + “\OAB (SBS Web Applications)”
$OAB = Get-OfflineAddressBook | Select-Object -Property Name
$strDomainDNS = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain().Name
$DomainAdmins = $strDomainDNS + “\Domain Admins”
$OrgName = Get-OrganizationConfig | Select-Object -Property DistinguishedName
$DefaultExchangeCertificate = “CN=” + $LocalServerName
Get-ExchangeCertificate | Where { $_.Subject -eq “$DefaultExchangeCertificate” } | ForEach { Remove-ExchangeCertificate -Thumbprint $_.Thumbprint }
Set-ForeignConnector “Windows SBS Company Web Connector $LocalServerName” -SourceTransportServers $LocalServerName
REG ADD HKLM\SYSTEM\CurrentControlSet\Services\MSExchangeIS\ParametersSystem /v “Disable MAPI Clients” /t REG_SZ /d 0.0.0-5.3164.0
Get-MailboxDatabase | Set-MailboxDatabase -OfflineAddressBook $OAB.Name -DeletedItemRetention “30.00:00:00”
Get-StorageGroup | Set-StorageGroup -CircularLoggingEnabled 1
Remove-OWAVirtualDirectory -Identity “Owa (Default Web Site)” -Confirm:$false
Remove-OWAVirtualDirectory -Identity “Exadmin (Default Web Site)” -Confirm:$false
Remove-OWAVirtualDirectory -Identity “Exchange (Default Web Site)” -Confirm:$false
Remove-OWAVirtualDirectory -Identity “Exchweb (Default Web Site)” -Confirm:$false
Remove-OWAVirtualDirectory -Identity “Public (Default Web Site)” -Confirm:$false
Remove-WebServicesVirtualDirectory -Identity “EWS (Default Web Site)” -Confirm:$false
Remove-ActiveSyncVirtualDirectory -Identity “Microsoft-Server-ActiveSync (Default Web Site)” -Confirm:$false
Remove-OabVirtualDirectory -Identity “OAB (Default Web Site)” -Force:$true -Confirm:$false
Remove-UMVirtualDirectory -Identity “UnifiedMessaging (Default Web Site)” -Confirm:$false
Remove-AutodiscoverVirtualDirectory -Identity “Autodiscover (Default Web Site)” -Confirm:$false
Remove-OWAVirtualDirectory -Identity “Exadmin (SBS Web Applications)” -Confirm:$false
Remove-OWAVirtualDirectory -Identity “Exchange (SBS Web Applications)” -Confirm:$false
Remove-OWAVirtualDirectory -Identity “Public (SBS Web Applications)” -Confirm:$false
New-OWAVirtualDirectory -WebsiteName “SBS Web Applications” -OwaVersion “Exchange2007” -ExternalAuthenticationMethods Fba
Set-OWAVirtualDirectory -InternalUrl “https://sites/owa/” -ClientAuthCleanupLevel “Low” -LogonFormat “UserName” -DefaultDomain $strDomainDNS -Identity “Owa (SBS Web Applications)”
New-OWAVirtualDirectory -WebsiteName “SBS Web Applications” -OwaVersion “Exchange2003or2000” -VirtualDirectoryType “Exadmin” -ExternalAuthenticationMethods Fba
New-OWAVirtualDirectory -WebsiteName “SBS Web Applications” -OwaVersion “Exchange2003or2000” -VirtualDirectoryType “Mailboxes” -ExternalAuthenticationMethods Fba
New-OWAVirtualDirectory -WebsiteName “SBS Web Applications” -OwaVersion “Exchange2003or2000” -VirtualDirectoryType “Exchweb” -ExternalAuthenticationMethods Fba
New-OWAVirtualDirectory -WebsiteName “SBS Web Applications” -OwaVersion “Exchange2003or2000” -VirtualDirectoryType “PublicFolders” -ExternalAuthenticationMethods Fba
New-WebServicesVirtualDirectory -WebsiteName “SBS Web Applications” -InternalUrl “https://Sites/EWS/Exchange.asmx” -basicauthentication 1 -windowsauthentication 1
New-ActiveSyncVirtualDirectory -WebsiteName “SBS Web Applications” -InternalUrl “https://Sites/Microsoft-Server-ActiveSync” -ExternalAuthenticationMethods Basic -InternalAuthenticationMethods Basic
New-OabVirtualDirectory -WebsiteName “SBS Web Applications” -InternalUrl “https://Sites/OAB”
Set-OabVirtualDirectory -PollInterval “30” -Identity “oab (sbs web applications)”
New-UMVirtualDirectory -WebsiteName “SBS Web Applications” -InternalUrl “https://Sites/UnifiedMessaging/Service.asmx”
New-AutodiscoverVirtualDirectory -WebsiteName “SBS Web Applications” -InternalUrl “https://Sites/Autodiscover/Autodiscover.xml” -BasicAuthentication 1 -WindowsAuthentication 1
Set-ClientAccessServer -Identity $LocalServerName -AutoDiscoverServiceInternalUri “https://sites/Autodiscover/Autodiscover.xml”
Set-OfflineAddressBook $OAB.Name -VirtualDirectories $OABVDir -Versions Version2,Version3,Version4 -PublicFolderDistributionEnabled:$True
iisreset /noforce
cd $env:windir\system32\inetsrv
.\appcmd.exe unlock config “-section:system.webserver/security/authentication/windowsauthentication”
.\appcmd.exe set config “SBS Web Applications/ews” “-section:windowsAuthentication” “-useKernelMode:False” /commit:apphost
.\appcmd.exe set config “SBS Web Applications/AutoDiscover” “-section:windowsAuthentication” “-useKernelMode:False” /commit:apphost
.\appcmd.exe set config “SBS Web Applications/oab” “-section:windowsAuthentication” “-useKernelMode:False” /commit:apphost
.\appcmd.exe set site “Default Web Site” /Bindings:http/*:80:
.\appcmd.exe start site “Default Web Site”
.\appcmd.exe start site “SBS Web Applications”
- Name the text file sbsAllrolereinstall.ps1, and then save it in C:\windows\system32.
- Open Exchange Powershell: Click Start, click All Programs, click Microsoft Exchange Server 2007, right-click Exchange Management Shell, and then click Run as administrator.
- On the User Account Control page, click Continue.
- In Exchange Management Shell, type .\sbsAllrolereinstall.ps1, and then press ENTER.
- Type Y to confirm the action, and then press ENTER.
- Close Exchange Management Shell.
- Copy and paste the following cmdlets into a text file: (Run Notepad as administrator)
- Update the settings in the Internet Information Services (IIS) Manager by doing the following:
- Click Start, click Administrative Tools, and then click Internet Information Services (IIS) Manager.
- On the User Account Control page, click Continue.
- Expand the name of your Windows SBS 2008 server, and then expand Sites.
- Click Default Web Site, and then click Start.
- Expand SBS Web Applications, and then click OAB.
- In OAB Home, double-click SSL Settings.
- Select Require SSL and Require 128-bit SSL, and then click Apply.
- To send e-mail messages to the Internet, run the Fix My Network Wizard by doing the following:
- Open the Windows SBS Console.
- On the navigation bar, click Network, and then click Connectivity.
- In the task pane, click Fix my network.
- Follow the instructions in the wizard. You can click each potential problem that the wizard lists to get more information about the problem. To recreate the default Send and Receive connectors to re-establish mail flow, select Exchange SMTP connectors are invalid.
- Rerun the Internet Address Management Wizard to associate the new virtual directories with the correct external URL.
- If your server uses a trusted certificate, you must also run the Add Trusted Certificate Wizard.
- You may end up with the exchange saying its not license you can register Exchange on SBS with this tool.
- Activate Exchange
http://rahman.eu/ActivateExchange.exe
Info gathered from
http://duitwithsbs.wordpress.com/2009/04/28/sbs-2008-how-to-repair-exchange-2007/
http://technet.microsoft.com/en-us/library/dd728006(WS.10).aspx
List of SBS Recovery options.
http://technet.microsoft.com/en-us/library/dd430085%28WS.10%29.aspx