我试图在 Wix 中修改 .ini 文件
如果它不存在,则 msi 不会完成....
- 我该如何检查这个
- 我真的很想修改它
是的,我在 google 上查看了其他 stackoverflow 问题/答案
我正在尝试这个...
<Component Id="TestIni" Guid="*">
<CreateFolder />
<IniFile Id="Ini1"
Action="createLine"
Directory="INSTALLLOCATION"
Section="Test"
Name="Minimal.ini"
Key="TestKey"
Value="TestValue" />
<IniFile Id="Ini2"
Action="createLine"
Directory="WindowsFolder"
Section="Test"
Name="Minimal.ini"
Key="TestKey"
Value="WindowsFolder TestValue" />
</Component>