惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Engineering at Meta
Engineering at Meta
博客园_首页
H
Help Net Security
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
B
Blog
I
InfoQ
SecWiki News
SecWiki News
T
Tailwind CSS Blog
Spread Privacy
Spread Privacy
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Vulnerabilities – Threatpost
N
Netflix TechBlog - Medium
P
Palo Alto Networks Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Vercel News
Vercel News
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
K
Kaspersky official blog
M
MIT News - Artificial intelligence
S
Schneier on Security
T
Threat Research - Cisco Blogs
F
Fortinet All Blogs
Cyberwarzone
Cyberwarzone
Scott Helme
Scott Helme
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
The Cloudflare Blog
Recent Announcements
Recent Announcements
Security Latest
Security Latest
G
GRAHAM CLULEY
IT之家
IT之家
Y
Y Combinator Blog
The Last Watchdog
The Last Watchdog
腾讯CDC
Google DeepMind News
Google DeepMind News
V
V2EX
S
Securelist
TaoSecurity Blog
TaoSecurity Blog
B
Blog RSS Feed
S
SegmentFault 最新的问题
博客园 - 叶小钗
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
Project Zero
Project Zero
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
F
Full Disclosure

博客园 - LiAnGcAt

禁用Ctrl+鼠标滚轮缩放VS代码窗体文字大小 SQLServer2008 收缩日志 Win/Mac 下修复exFAT 分区 “System.AccessViolationException”类型的未经处理的异常在 System.Data.dll 中发生 SQLServer的ERRORLOG太大怎么办 sql查询重复记录 访问 IIS 元数据库失败 关于并发控制的笔记 笔记,随笔,摘 SQLServer 2005 在VISTA下重新安装并硬恢复数据库后,SA登陆异常 SQL Server的游标 SQL Server 2000 Agent自动关闭? 服务器HTTPS和HTTPS的session SQL 笔记 二 Ctrl + 0!!!怎么就记不住呢 当link button无法提交form 当你的SQLServer没有启动~ SQLServer学习:复制表结构 禁用xp_cmdshell!
在Vista下配置VS2003
LiAnGcAt · 2008-03-06 · via 博客园 - LiAnGcAt

可能你有许多原因要在vista下配置VS2003(Visual Studio 2003)以及.Net 1.1.4322,但是,VISTA这张脸可不认……
Vista安装后,直接安装了.Net 2.0,根本没有想过1.1,而且,VISTA配置的IIS是IIS7,不是IIS6……这一切怎么办?按照我的方法来:

1.直接安装VS2003;
2.安装VS2003 SP1补丁;
* 这时候如果你熟悉IIS7并为你的web应用程序设置好了虚拟目录,你会发现w3wp.exe会无限崩溃……
* 确认你的

c:\Windows\Microsoft.NET\Framework\v1.1.4322\mscorsvr.dll文件的版本是1.1.4322.2032以上,如果不是,继续:
3.安装.Net 1.1 Sp1补丁;(是的,VS的sp1没有这个)
* 这时候查看mscorsvr.dll版本,确认为1.1.4322.2032
4.到控制面板-程序和功能-打开和关闭windows功能,为IIS选上所有IIS6的兼容支持
5.以管理员身份运行命令行
6.进入c:\Windows\Microsoft.net\Framework\v1.1.4322
7.运行 aspnet_regiis -ir -enable, 其中"ir"选项保证在IIS7中注册v1.1时不改变现有的脚本映射
8.打开“ISAPI和CGI限制”(选计算机名,中间会有),确定ASP.net1.1.4322为启用;
9.aspnet_regiis 同时在应用程序池下创建一个新的名为"ASP.NET 1.1"的应用程序池, 并将配置为“经典”, (如果是64位操作系统将Enable32BitAppOnWin64设为 true);
10.确认新"ASP.NET 1.1" app 池为默认池
11.打开IIS信息服务管理器- 网站;
12.在右上的“操作”区,点击“设置网站默认设置...”;
13.将应用程序池设为"ASP.NET 1.1"

ok,欢迎回到VS2003和.Net1.1的世界!