문제

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 ?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top