获取 IIS 条目的配置数据库路径(安装已停止,因为指定的路径不是有效的 Web 应用程序)
我绝不是系统管理员,所以如果我错了,请纠正我。
我想运行 aspnet_regiis.exe -s。 这需要我网站的元数据库路径。
如何找到此元数据库路径?
I'm by no means a sysadmin so please correct me if I'm wrong.
I want to run aspnet_regiis.exe -s.
This requires the metabase path of my website.
How do I find this metabase path?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需运行 aspnet_regiis.exe -lk 即可查看已注册应用程序的列表、其元数据库路径以及为此应用程序安装的 .NET 框架版本。
另外,您还可以使用以下几个链接来查找配置数据库路径:
HTH ,
大学教师
Just run aspnet_regiis.exe -lk to see a list of the registered applications, their metabase paths and the version of the .NET framework installed for this application.
Also, here are a couple of links that you can use to find the metabase path:
HTH,
Don
对于高于 Vista 的 Windows 版本,请尝试 appcmd,使用“列出站点”命令:
这将为您提供系统上所有站点的站点名称和 ID。
配置数据库路径的形式为
加上站点 ID。
For versions of Windows higher than Vista, try appcmd, with the "list site" commands:
This should give you the site name and id for all the sites on the system.
The metabase path is of the form
plus the site id.