Enabling ASP.Net 1.1 on Windows Server 2003 x64
February 8, 2006
Don’t pull your hair out with this running ASP.Net 1.1 and ASP.Net 2.0. Apparently you cannot run ASP.Net 2.0 in 64 bit mode and run ASP.Net 1.1 in 32 bit mode at the same time with IIS 6.0.
Here is some information from MS that I encountered that helped us to get ASP.Net 1.1 to work on x64:
From Microsoft Support:
IIS 6.0 supports both the 32-bit mode and the 64-bit mode. However IIS 6.0 does not support running both modes at the same time on a 64-bit version of Windows. ASP.NET 1.1 runs only in 32-bit mode. ASP.NET 2.0 runs in 32-bit mode or in 64-bit mode. Therefore, if you want to run ASP.NET 1.1 and ASP.NET 2.0 at the same time, you must run IIS in 32-bit mode
After you install the redistributable packages, you can switch between the different versions of ASP.NET. To do this, follow these steps for each ASP.NET version:
ASP.NET 1.1, 32-bit version
To run the 32-bit version of ASP.NET 1.1, follow these steps:1. Click Start, click Run, type cmd, and then click OK.
2. Type the following command to enable the 32-bit mode:
cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 1
3. Type the following command to install the version of ASP.NET 1.1 and to install the script maps at the IIS root and under:
%SYSTEMROOT%\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i
4. Make sure that the status of ASP.NET version 1.1.4322 is set to Allowed in the Web service extension list in Internet Information Services Manager.ASP.NET 2.0, 32-bit version
To run the 32-bit version of ASP.NET 2.0, follow these steps:1. Click Start, click Run, type cmd, and then click OK.
2. Type the following command to enable the 32-bit mode:
cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 1
3. Type the following command to install the version of ASP.NET 2.0 (32-bit) and to install the script maps at the IIS root and under:
%SYSTEMROOT%\Microsoft.NET\Framework\v2.0.40607\aspnet_regiis.exe -i -wow64
4. Make sure that the status of ASP.NET version 2.0.40607 (32-bit) is set to Allowed in the Web service extension list in Internet Information Services Manager.ASP.NET 2.0, 64-bit version
To run the 64-bit version of ASP.NET 2.0, follow these steps:1. Click Start, click Run, type cmd, and then click OK.
2. Type the following command to disable the 32-bit mode:
cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 0
3. Type the following command to install the version of ASP.NET 2.0 and to install the script maps at the IIS root and under:
%SYSTEMROOT%\Microsoft.NET\Framework64\v2.0.40607\aspnet_regiis.exe -i
4. Make sure that the status of ASP.NET version 2.0.40607 is set to Allowed in the Web service extension list in Internet Information Services Manager.
Note The build version of ASP.NET 2.0 may differ depending on what the currently released build version is. These steps are for build version 2.0.40607.
June 30, 2006 at 11:04 am
Can anyone tell me if the .NET 1.1 distributable can be installed on a W2K3 x64 system.
June 30, 2006 at 4:28 pm
Yes you can run ASP.Net 1.1 on x64 there are few things you have setup your server to run in 32 bit mode, so essentially you aren’t taking advantage of the 64 bit processing power.
Here is an MS Support article which describes how to do it.
http://support.microsoft.com/?id=894435
December 16, 2007 at 1:45 am
Thank you! I’ve been fumbling around in the dark trying to figure out why none of my 1.1 sites would work. The system offers no clues as to why it is happening so I didn’t know where to start. Your solution worked great!
-E
January 30, 2008 at 9:03 pm
I echo Elroy Skimms sentiments wholeheartedly!!!!