Question

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:

enter image description here

How to make just a single page wizard in NSIS ? Is it possible to do a single page installer like shows the above image ?

Was it helpful?

Solution

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:

  1. 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.

  2. Create a custom page with nsDialogs.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top