Reputation: 7
I made a python program and I compiled it using Py2exe and it works great. As you know, all the big softwares shifted to 1-3 steps install. And many have just one page install in which they include their EULA. I found an example of this:
Image:
How to make just a single page wizard in NSIS ? Is it possible to do a single page installer like shows the above image ?
Upvotes: 0
Views: 243
Reputation: 101764
A NSIS installer is never going to be a one page wizard because the actual installing happens on a 2nd page.
There are probably two ways to create the every detail on one page wizard:
Use Resource Hacker to edit the directory page in one of the NSIS ui's in NSIS\Contrib\UIs to add a richedit control and in the script use ChangeUI
to apply this new page then at run-time use one of the license plugins to fill the richedit control.
Create a custom page with nsDialogs.
Upvotes: 1