gpt4 book ai didi

用于为 virtualDirectory 设置凭据的 IIS AppCmd 语法

转载 作者:行者123 更新时间:2023-12-04 23:02:53 33 4
gpt4 key购买 nike

我正在使用 appcmd在 IIS8 中创建一个新的虚拟目录。其语法是:

appcmd add vdir /app.name:<NAME> /path:<PATH> /physicalPath:<PHYSICAL-PATH>

这工作正常。现在我需要设置一些凭据;这在 GUI 中很容易(虚拟目录 > 基本设置 > 连接为)。当我设置这个时,我可以在我的 applicationHost.config 中看到正在更新 XML 条目的文件。所以我应该可以手动设置 appcmd .我正在努力使用语法导航到正确的 XML 元素,以便我可以设置属性 userName并添加属性 password .

这是我的 XML:

<sites>
<site name="EXAMPLESITE" id="4">
<application path="/" applicationPool="EXAMPLEPOOL">
<virtualDirectory path="/" physicalPath="c:\wwwroot\" userName="" />
<virtualDirectory path="/upload" physicalPath="\\SOME-COMPUTER-ON-NETWORK\upload" userName="" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:80" />
</bindings>
</site>
</sites>

最佳答案

这应该有效:

appcmd set vdir /vdir.name:"EXAMPLESITE/upload" /userName:user /password:password

关于用于为 virtualDirectory 设置凭据的 IIS AppCmd 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18912419/

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