在WIX中有一个Property实体,proeprty可以用于任何"字符串"安装程序的字段/属性。
我需要配置IIS和Max Workers Count属性,该属性为Integer类型。
由于编译错误,在这种情况下无法使用WIX属性。
有没有办法从WIX命令行配置整数字段?
答案 0 :(得分:0)
没有找到Integer属性问题的解决方案。
但IIS的问题可以通过CustomerAction解决
<CustomAction Id="DoMagicWithIis" Execute="deferred" Impersonate="no" Return="asyncNoWait" ExeCommand="appcmd <some command> [Property]" />