博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
64位的win2003上运行Framework1.1
阅读量:5359 次
发布时间:2019-06-15

本文共 1721 字,大约阅读时间需要 5 分钟。

 

1)Framework1.1是32位的程序,Framework2.0以上才支持了64位。

2)但是可以通过WOW64方式运行32位的Framework1.1。

3) 首先要保证64位的win2003安装了SP1。

4)使用命令cscript.exe adsutil.vbs set W3SVC/AppPools/Enable32BitAppOnWin64 “true”配置IIS。

5)当然要发挥64位性能的话,可以把你的web应用程序升级到Framework2.0以上。

 

原文地址:

Running 32-bit Applications on 64-bit Windows (IIS 6.0)

Windows Server 2003™, Service Pack 1 enables IIS 6.0 to run 32-bit Web applications on 64-bit Windows using the Windows-32-on-Windows-64 (WOW64) compatibility layer. IIS 6.0 using WOW64 is intended to run 32-bit personal productivity applications needed by software developers and administrators, including 32-bit Internet Information Services (IIS) Web applications.

On 64-bit Windows, 32-bit processes cannot load 64-bit DLLs, and 64-bit processes cannot load 32-bit DLLs. If you plan to run 32-bit applications on 64-bit Windows, you must configure IIS to create 32-bit worker processes. Once you have configured IIS to create 32-bit worker processes, you can run the following types of IIS applications on 64-bit Windows:

Internet Server API (ISAPI) extensions

ISAPI filters

Active Server Page (ASP) applications (specifically, scripts calling COM objects where the COM object can be 32-bit or 64-bit)

ASP.NET applications

IIS can, by default, launch Common Gateway Interface (CGI) applications on 64-bit Windows, because CGI applications run in a separate process.

 

To enable IIS 6.0 to run 32-bit applications on 64-bit Windows

1.

Open a command prompt and navigate to the %systemdrive%"Inetpub"AdminScripts directory.

2.

Type the following command:

cscript.exe adsutil.vbs set W3SVC/AppPools/Enable32BitAppOnWin64 “true”

3.

Press ENTER.

转载于:https://www.cnblogs.com/dingzhiming/archive/2008/09/19/1294037.html

你可能感兴趣的文章
java按值传递理解
查看>>
Leetcode: Search a 2D Matrix
查看>>
Python----面向对象---鸭子类型
查看>>
css 只显示两行 超过显示点点点
查看>>
Spring IoC容器的设计—1—主线
查看>>
[USACO11OPEN]玉米田迷宫Corn Maze
查看>>
(C#) 求两个数组的交集
查看>>
NOIP2002pj产生数[floyd 高精度]
查看>>
POJ2955Brackets[区间DP]
查看>>
[整体二分]【学习笔记】【更新中】
查看>>
log4j(二)——如何控制日志信息的输出?
查看>>
NYOJ -37回文字符串
查看>>
LeetCode Arithmetic Slices
查看>>
iperf详细介绍~!《转》
查看>>
bzoj3145:[Feyat cup 1.5]Str
查看>>
[数据结构]一元n次多项式的抽象数据类型
查看>>
ABAP术语-ABAP Editor
查看>>
软件开发工程师的20条编程经验
查看>>
25个令人难忘的广告设计
查看>>
【转】tcpdump的使用
查看>>