Possible to hide all details in NSIS installation progress page?
Asked Answered
S

1

7

Using the Nullsoft Scriptable Install System (NSIS), I'm looking for a way to hide the details on the MUI_PAGE_INSTFILES page when having a setup with Modern UI 2.

Currently an example of what I have is this:

enter image description here

And this would be what I want to achieve:

enter image description here

(German only, sorry)

As you see, there is no information about the individual file being copied as well as no way to show the details.

I've searched the documentation of Modern UI 2 but found no function to call to make these two controls (label and button) hidden.

My question is:

Is there a way to hide the file label and the details button that are being shown during a setup installation progress?


Solved

With the help of Anders, I've managed to do what I want:

First, I put

ShowInstDetails nevershow
ShowUninstDetails nevershow

at the top of my NSI file. Next, I put

SetDetailsPrint none

inside at the beginning of the Section "All files" section, and I put

SetDetailsPrint none

inside at the beginning of the Section "Uninstall" section.

Both, my setup and my uninstaller now runs without showing details.

Shoulder answered 9/7, 2012 at 16:6 Comment(0)
D
7

ShowInstDetails nevershow + SetDetailsPrint none

ShowInstDetails nevershow

Section
SetDetailsPrint none
SectionEnd
Duval answered 9/7, 2012 at 19:48 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.