I am using wix3.8 and in my install MSI, i need InstallScopeDlg which is only available using WixUI_Advanced, however I do not the first dialog which is the license agreement.
I have seen a lot of posts on how to skip (or not display) that dialog BUT they are all using WixUI_InstallDir which does not support InstallScopeDlg.
This is what I have:
<Property Id="ApplicationFolderName" Value="Outlook Add In" />
<Property Id="WixAppFolder" Value="WixPerMachineFolder" />
<UI Id="UiSequence">
<UIRef Id="WixUI_Advanced" />
</UI>
Can anyone please show me how to hide or skip the license agreement while still using WixUI_Advanced.