0

我们需要使用 xmlconfig 来更新 C:\Windows\System32\inetsrv\config 下的 applicationHost.config。并且该操作应该在 ConfigureIIs 之后运行。

但默认情况下,XmlConfig 将在 ConfigureIIs 之前运行。

你能提供一些线索吗?

4

1 回答 1

0

在我的团队成员的帮助下。添加以下 ExecuteSequence 将解决该问题。

<InstallExecuteSequence>
  <Custom Action="SchedXmlConfig" After="ConfigureIIs"/>
</InstallExecuteSequence>
于 2013-08-02T06:36:32.837 回答