我的服务器运行的是 Windows Server 2003 SP2。如何检查它运行的是哪个版本的 IIS?
答案1
您在 IIS 服务器上运行一个简单的 asp 脚本:
response.write(Request.ServerVariables("SERVER_SOFTWARE"))
或者查找 ASP.DLL(我相信是在 system32 下)右键单击它,选择属性并检查文件版本。
但是在 Windows Server 2003 上,您几乎肯定运行的是 IIS 6.0
答案2
如果您运行的是 Windows Server 2003,则您正在运行 IIS 6.0 / ASP 3.0
或者
- 在您的系统上搜索 ASP.DLL
- 右键单击它并选择属性
检查版本选项卡:
IIS 3.0 shows 1.x IIS 4.0 shows 2.x IIS 5.0 shows 5.0.2195.x IIS 5.1 shows 5.1.2600.x IIS 6.0 shows 6.0.3790.x