Question

I'm developing in 32-bit XP and deploying to a Win2k3 64-bit server set to run in 32-bit mode.

How do I install 3.5 framework components on the Win2k3 server in this scenario? I see that there are new charting controls and an SP1 for ASP.NET 3.5

How do I get these on the server that is running in 32-bit mode in IIS?

Was it helpful?

Solution

Installing the x64 package for .Net 3.5 will install both the 64 bit and 32 bit frameworks.

With ASP.Net, you will need to do the following:

  1. Set IIS to run in 32 bit mode:

    cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 1

  2. Set the appropriate .Net version/bitness for your application:

    %SYSTEMROOT%\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i

This KB article (KB894435) has all the details you need.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top