I'm new to NSIS and switched to it because we hate InstllShield here. I have NSIS v2.24 and the HM NIS Edit 2.0.3, and created an installer very wuickly with these tools using the Modern UI v1.75.
My question is I need to suppress the installation details in the install files page
; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
I've tried using the
ShowInstDetails nevershow
command, but it doesn't seam to work. I've tried putting it in several location in my scrpit but it seams to have no effect.
Can anyone tell me how to suppress the install details?
Thank you
Prevent install details from showing
3 posts
Works fine here. Make sure you have the latest version of NSIS installed.
If it helps, I had ShowInstDetails nevershow before !insertmacro MUI_PAGE_INSTFILES
Stu
If it helps, I had ShowInstDetails nevershow before !insertmacro MUI_PAGE_INSTFILES
Stu
Thanks
I actually found the command lurking in a second place after the MUI_end and before SEC01, Then deleted my call previous to that and changed that call to NeverShow and it works fine.
Thank you for your help.
I actually found the command lurking in a second place after the MUI_end and before SEC01, Then deleted my call previous to that and changed that call to NeverShow and it works fine.
Thank you for your help.