Customizing Wix_Advanced Dialog Set UI Sequence #8001
Unanswered
takase1121
asked this question in
Questions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I am working on a Wix v4 project (MSI), and I am having some difficulties with customizing Wix_Advanced.
My goal is to hide the EULA (replace
AdvancedWelcomeEulaDlg
withWelcomeDlg
, and then directly go toInstallScopeDlg
).In case I haven't made myself clear, this is my very first time using WiX and I really have no idea what I'm doing. Most of the documenentation are for v3, which are sometimes not compatible. I try to scourge as much information from the issue tracker and examples online and piece everything together. This is my current .wxs file:
Code
To try to extend this UI, I tried the instructions here but it was for V3 and it doesn't work.
I wasn't able to access
WixUIValidatePath
. I've read that this action is now architecture-dependent and needs the<ui:WixUI>
namespace to import properly.I imported
WixUI_Advanced
with the<ui:WixUI>
tag but was unable to replaceAdvancedWelcomeEulaDlg
withWelcomeDlg
. I tried adding this after the<UI>
declaration:Which did not work because WixUI_Advanced doesn't allow overriding this. I'm unsure how to achieve this.
Beta Was this translation helpful? Give feedback.
All reactions