gpt4 book ai didi

asp.net - Windows 7 上的等效 "aspnet_regiis -lk"是什么?

转载 作者:行者123 更新时间:2023-12-02 15:53:42 27 4
gpt4 key购买 nike

或者:如何在 Windows 7 中查找 IIS 元数据库路径?

我以前只运行 aspnet_regiis -lk,但根据 aspnet_regiis 帮助,这是“Windows Vista 中不支持”...

最佳答案

这是因为从 Windows Vista 开始,发布了新版本的 IIS (IIS 7),它在很多方面与旧版 IIS 体系结构有很大不同。

要控制新的 IIS,您应该使用 IIS 管理器 (UI),或者如果您需要控制台工具,请查看 C:\Windows\System32\inetsrv\AppCmd.exe

如果您想列出应用程序池及其 .NET 版本:

> appcmd list apppool
APPPOOL "FlexLabs Bak" (MgdVersion:v4.0,MgdMode:Integrated,state:Stopped)
APPPOOL "OpenIdTest" (MgdVersion:v2.0,MgdMode:Integrated,state:Started)
APPPOOL "TestApp" (MgdVersion:v4.0,MgdMode:Integrated,state:Started)

获取 IIS 中的应用程序列表:

> appcmd list app
APP "FlexLabs/" (applicationPool:FlexLabs)
APP "TestApp/" (applicationPool:TestApp)

获取站点列表:

> appcmd list site
SITE "TestApp" (id:4,bindings:http/*:82:,state:Started)

(注意:这些是示例,并非我机器上的所有实际数据:P)

当然,它可以做的事情比列出的要多得多......并且在某些方面它比 IIS 管理器更强大。
您正在寻找什么具体内容吗?

UPD:从这里退出:http://mvolo.com/blogs/serverside/archive/2007/07/21/Anatomy-of-an-IIS7-configuration-path.aspx

If you have worked with IIS6 and previous versions of IIS, you are most likely familiar with the IIS metabase paths. You know, the ones that look like LM/W3SVC/1/ROOT. These metabase paths serve as a mechanism to identify a part of the IIS website hierarchy, or a url therein, for the purposes of read/writing their configuration settings.
[...]
IIS7 repaces the metabase with a whole new configuration system, based on a distributed hierarchy of XML configuration files also used by the .NET Framework/ASP.NET. This confguration system is fundamentally different from the metabase

一定要看看这篇文章,因为我认为这正是您在这种情况下寻找的内容

此外,请在此处查看有关它的更多信息: http://learn.iis.net/page.aspx/125/metabase-compatibility-with-iis-7/基本上,您可以安装“IIS 6 Metabase Compatibility”服务器角色,并使用一些旧工具和脚本对其进行一些控制:)

关于asp.net - Windows 7 上的等效 "aspnet_regiis -lk"是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2698018/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com