Hi all,
I need help with the question above. Also, how can I ensure that the application installs for all users using the machine? I haven't really used WiX before.
Hi all,
I need help with the question above. Also, how can I ensure that the application installs for all users using the machine? I haven't really used WiX before.
You're going to have to read the tutorial. There's just no way around it. It should answer all your questions.
Okay, I got the solution. I added the WixUIExtension dll as a reference and then used the following before the project closing tag:
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLLOCATION" ></Property>
<UIRef Id="WixUI_InstallDir"/>
It works perfectly.