Installing Exchange Server 2007 can be a little tricky and sometimes even frustrating. That's why I rejoiced when I found out this wonderful technical guide, written by Microsoft Customer Service and Support: Exchange Server 2007 Setup Architecture and Troubleshooting.
Brief Description
This document is a step-by-step guide to help end users install Exchange Server 2007.
Overview
Exchange Server 2007 Setup Architecture and Troubleshooting was written by Microsoft Customer Service and Support to prepare Support Engineers who are assisting customers installing Exchange Server 2007 Service Pack 1 (SP1). We hope that you find the step-by-step approach useful and appreciate any feedback.
Although the Exchange Server TechCenter has lots of high quality technical information, this document condenses the most important steps required for a successful setup, and also provides some additional tips. For instance, the troubleshooting chapter suggests that you format the output of the Exchange Setup log file to HTML:
To enhance output, output can be directed to HTML using the OUT-HTML and OUT-IE scripts using the following command:
Get-SetupLog –tree:$false –error:$false | Where { $_.status –eq “Error” } | select datetime, depth, description, status | Out-HTML | Out-IE
And here's a personal tip: I like to follow the setup progress using the Tail utility, from the Windows Server 2003 Resource Kit Tools:
Tail -f C:\ExchangeSetupLogs\ExchangeSetup.log