Vin2008 X64安装.Net Framework1.1



http://www.iis.net/learn/install/installing-iis-7/how-to-install-aspnet-11-with-iis-on-vista-and-windows-2008

1.安装IIS6 management tools

2.下载安装
http://www.microsoft.com/en-us/download/confirmation.aspx?id=26

       Install the .NET Framework v1.1 and .NET Framework v1.1 SP1

       Install Framework v1.1, SP1, and ASP.NET's security update to SP1:

如果不安装SP1,那么app pool总是不能正常启动,安装完2个SP1后需要重启

3.Addaspnet_isapi.dll into IIS server and make sure ASP.NET v1.1 version Allowed

Run thecommand to install v1.1 version
C:WindowsMicrosoft.NETFrameworkv1.1.4322aspnet_regiis–i
C:WindowsMicrosoft.NETFrameworkv1.1.4322aspnet_regiis –enable

Add IgnoreSection Handler to v1.1 machine.config
C:WindowsMicrosoft.NETFrameworkv1.1.4322configmachine.config
<sectionname="system.webServer"type="System.Configuration.IgnoreSectionHandler,
    System, Version=1.0.5000.0,Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>


4.cd
C:WindowsSystem32inetsrv

appcmd add apppool

/name:"NewPool"/managedRuntimeVersion:"v1.1"
据说v1.1不能改成V1.1

5.ClickAdvanced Settings for new created hms application pool , make sure Enable32-Bit Applications is true


6.Convert folder to App 后,改app alias
%windir%system32inetsrvconfig

原文地址:https://www.cnblogs.com/sui84/p/6777034.html