1. Install SQL 2005 with those two components (at least:
a. database
b. reporting services
2. Configure reporting services during the installation or later via the configuration wizard).
3. Change permissions on %windir%\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files to grant the Network Service write access (I don’t know why it is not done during install)
4. Install MOM 2005 SP1 server
5. Install hotfixes 913812, 913801
6. Install MOM reporting server. Manually enter both reporting virtual directories.
7. Install hotfix 915785
8. Open IIS manager, open Reports properties page and change ASP.NET version from 1.1. to 2.0 (again, I do not know why the install does not do it automatically)
9. Additionally you may need to follow http://support.microsoft.com/?kbid=909846
10. If you are NOT using SSL on your Reports pages make sure:
a. \Program Files\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\RSReportServer.config has the following section <Add Key="SecureConnectionLevel" Value="0"/> (3 would indicate SSL is required, 0 - not)
11. If you are using SSL on your Reports pages then you should follow additionally these steps if you cannot reach the SQL RS website via https:
a. \Program Files\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\RSReportServer.config has the following section <Add Key="SecureConnectionLevel" Value="3"/> (3 would indicate SSL is required, 0 - not)
b. Verify the server FQDN and not NETBIOS name is used by the certificate:
i. Open Internet Information Services Manager (IIS)
ii. Open the properties of the Default Web Site. In the Directory Security tab, under "Secure communication" click the "View certificate" button.
iii. Make sure there are no errors/warnings on the General tab or the Certification Path tab.
iv. Get the name from the "Issued to" field on the General tab, or the "Subject" property on the Details tab. This will be the fully-qualified domain name (FQDN).
v. Exit out of IIS Manager
c. Add the server’s FQDN to the SQL Reporting Services Web configuration file if needed:
i. Open the RSWebApplication.config file using Notepad.exe on the Microsoft SQL Server 2000 Reporting Services server. Note The RSWebApplication.config file is typically located in the following path on the SQL Server 2000 Reporting Services server: Drive :\Program Files\Microsoft SQL Server\MSSQL\Reporting Services\ReportManager\
ii. Locate the following line in the RSWebApplication.config file: "<ReportServerURL>http://NetBIOS_Name/ReportServer</ReportServerURL>" (note to the tech writer: this config file is XML, so the <> symbols should appear around ReportServerURL)
iii. Replace this line with the following line: "<ReportServerURL>http://Server FQDN/ReportServer</ReportServerURL>"
d. Save the RSWebApplication.config file.
e. Perform a reset of the IIS service.
f. Verify that you can open the SQL Reporting Services site by connecting to the following URL in Internet Explorer: https://FQDN/Reports.
g. If you successfully connect to the SRS site at https://FQDN/Reports, try again to install MOM 2005 Reporting.