Skip to content
⌘ NSIS Forum Archive

Hiding "Execute: ..."

6 posts

dexedrine#

Hiding "Execute: ..."

Is there a way to hide what the installer is actually doing, so that I can put in my own text?

Right now it says:
Execute: c:\program files\somewhere\dotnetfx.exe /q:a /c:"install /l /q"

I'd rather it say something like "Installing .NET Framework..." or something else.
dexedrine#
Yeah, I tried that earlier after reading the documentation before posting. When using "ShowInstDetails nevershow", it still shows me what it's doing at the time. Any reason why it wouldn't work?

Thanks,

Jason
DOCa Cola#
use
ShowInstDetails none
before your exec command and
ShowInstDetails listonly
or
ShowInstDetails both
after the exec command