Every time I tried to run the setup I kept getting the following message:
Managed SQL Server Landing Page has stopped working
Doing a search online for similar issues around setup and landingpage.exe didn't yield a great deal of solutions.
Back tracking I decided to narrow down some of the changes I had made to the image, specifically around the installed updates.
After uninstalling .Net Framework 4.0 SQL setup appeared to work without a hitch, but putting .Net 4.0 back on yielded the same result.
After a bit more searching, I came across a TechNet forum post that pointed me in the direction of this blog post about using CasPol to fully trust a share: http://blogs.msdn.com/b/shawnfa/archive/2004/12/30/344554.aspx
It turns out that when trying to install SQL 2008 R2 from a file share with .Net 4.0 installed will result in this landingpage.exe error so the choices are:
- Install SQL 2008 R2 from a CD/DVD/ISO
- Copy the SQL 2008 R2 install files locally and install
- Use CasPol to trust the share
I choose to use the CasPol method as I have all my install files stored in my DSL used by MDT & ConfigMgr so would rather use this than digging out disks or mounting ISO's.
The command I used was:
CasPol.exe -m -ag 1.2 -url file://\\<Server>/<Share>/* FullTrust
Run this from C:\Windows\Microsoft.NET\Framework64\v4.0.30319
This worked on one of my servers, however, another one I tried started throwing errors then about FixSQLRegistryKey during the pre-req checks.
The same forum post also mentions a more permanent fix, so I took the plunge and added/changed the following line to the listed config files in the source files for SQL:
<runtime>
<legacyCasPolicy enabled="false" />
<loadFromRemoteSources enabled="true"/>
</runtime>
<legacyCasPolicy enabled="false" />
<loadFromRemoteSources enabled="true"/>
</runtime>
Files:
- setup.exe.config
- setup100.exe.config
- fixsqlregistrykey_ia64.exe.config
- fixsqlregistrykey_x64.exe.config
- fixsqlregistrykey_x86.exe.config
- landingpage.exe.config
Not pretty, but worked for me ;)
Original Forum Post:
http://social.msdn.microsoft.com/Forums/en-US/sqlexpress/thread/3bc7cebb-2264-4e51-878b-0cce193c2780
Thanks Min Keng!
Interestingly, this issue has been highlighted to Microsoft via Connect as far back as July 2010 and still has no official fix other than to uninstall .Net or run from the local machine.
http://connect.microsoft.com/SQLServer/feedback/details/573043/sql-server-2008-r2-cumulative-updates-wont-install-with-dotnet-framework-4-0-30319
No comments:
Post a Comment