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

推荐订阅源

T
Tenable Blog
H
Heimdal Security Blog
K
Kaspersky official blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
S
Schneier on Security
G
GRAHAM CLULEY
U
Unit 42
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
C
CERT Recently Published Vulnerability Notes
Google DeepMind News
Google DeepMind News
罗磊的独立博客
Stack Overflow Blog
Stack Overflow Blog
阮一峰的网络日志
阮一峰的网络日志
Simon Willison's Weblog
Simon Willison's Weblog
C
Cisco Blogs
Cyberwarzone
Cyberwarzone
T
The Exploit Database - CXSecurity.com
Project Zero
Project Zero
Security Archives - TechRepublic
Security Archives - TechRepublic
www.infosecurity-magazine.com
www.infosecurity-magazine.com
博客园 - 司徒正美
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
V
Visual Studio Blog
博客园 - Franky
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Jina AI
Jina AI
P
Proofpoint News Feed
P
Proofpoint News Feed
有赞技术团队
有赞技术团队
L
LINUX DO - 最新话题
宝玉的分享
宝玉的分享
N
News and Events Feed by Topic
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
Spread Privacy
Spread Privacy
Application and Cybersecurity Blog
Application and Cybersecurity Blog
IT之家
IT之家
S
Security Affairs
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
小众软件
小众软件
N
News | PayPal Newsroom
Cloudbric
Cloudbric
AWS News Blog
AWS News Blog
W
WeLiveSecurity
The Last Watchdog
The Last Watchdog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
NISL@THU
NISL@THU

博客园 - 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的世界!