I want to change the ALLUSERS property in Wix from 2 to 1. In my wxs file:
<Property Id="ALLUSERS" Secure="yes" Value="2" />
In Electron-wix-msi, my file set the UI property:
ui: {
chooseDirectory: true,
template: '<Property Id="ALLUSERS" Secure="yes" Value="1" />'
},
I get an error though because it is a duplicate property. Is there no way to change the value with electron-wix-msi?