在不同位置用 appcmd.exe 编辑 applicationhost.config

Edit applicationhost.config with appcmd.exe at different location

我可以使用 appcmde.exe 在不同位置编辑 applicationhost.config 吗?例如:Visual Studio 2015 在 .vs\config 目录下创建 applicationhost.config。我可以手动编辑此文件,但我更愿意使用 appcmd.exe.

Jexus Manager 提供类似 IIS 管理器的体验,但您当然可以使用 IIS Express appcmd,

http://www.iis.net/learn/extensions/introduction-to-iis-express/iis-80-express-readme

从 IIS 8 Express 开始,它支持 /AppHostConfig 开关,如自述文件所示。

您可以使用选项 apphostconfig 指定不同的 applicationhost.config 文件。

例如:

appcmd list site "mysite" /config /apphostconfig:"%userprofile%\projects\myproject\.vs\config\applicationhost.config"