I am very new to wix so please bear with me.
I have created an installer for a product abc.exe
Using this one installer the client wants to install abc.exe in 6 different directories
But once abc.exe is installer and then if we run the installer again, the remove, repair window opens up. So there is absolutely no choice for the client to run the installer again to 'install' the same product elsewhere.
My UI code is as below
<Product>
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
<UI>
<UIRef Id="WixUI_InstallDir" />
<DialogRef Id="InstallInfoDlg" />
<Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="InstallInfoDlg">1</Publish>
</UI>
<UIRef Id="WixUI_ErrorProgressText" />
</Product>
Can I make the Install dialog show up again instead of the uninstall dialog when the installer is run again?