Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们需要使用 xmlconfig 来更新 C:\Windows\System32\inetsrv\config 下的 applicationHost.config。并且该操作应该在 ConfigureIIs 之后运行。
但默认情况下,XmlConfig 将在 ConfigureIIs 之前运行。
你能提供一些线索吗?
在我的团队成员的帮助下。添加以下 ExecuteSequence 将解决该问题。
<InstallExecuteSequence> <Custom Action="SchedXmlConfig" After="ConfigureIIs"/> </InstallExecuteSequence>