How to customize the installation dialog flow? #13149
Replies: 2 comments 1 reply
-
You can change the whole WiX installer template. It couldn't be more customizable than that. Unless you mean the customization offered by WiX or MSI installers in general, then i agree, it's quite lacking.
If step 4 is absolutely a requirement then i think none of the existing installer frameworks out there would really be that helpful and you'll need to program large parts of it yourself (probably even with a app framework instead of an installer framework).
Delay step 4 into the actual app and use battle tested installers. |
Beta Was this translation helpful? Give feedback.
-
@FabianLars Thank you for your insights! Unfortunately, having an authentication screen before the actual installation begins is a mandatory requirement in my case. Because of this, I’m considering building a self-installing executable (.exe) that manages all the installation steps via custom windows base on webview2. Would this approach be technically feasible and commonly recommended? |
Beta Was this translation helpful? Give feedback.
-
Hi everyone,
(This is my first time developing a Windows application, so I appreciate your patience.)
I'm looking to create a customized installation flow for my Windows application with the following steps:
1, User launches the executable
2, Language selection → User clicks Next
3, EULA agreement → User clicks Next
4, Login screen → User authenticates and clicks Next
5, Installation progress (display progress bar, file copying, etc.)
6, Application dashboard launch
I've referenced the Tauri Windows Installer documentation and successfully customized UI elements like banners and background images using WiX. However, seem not much customization with Wix!
Key Concerns:
Request for Advice:
I'd be extremely grateful for any insights or suggestions you could share!
Beta Was this translation helpful? Give feedback.
All reactions