NSIS ifSilent not set -


i'm calling nsis compiled setup.exe file /s option, 'silent' internal variable set automatically. here .oninstsuccess function. want skip exec command if silent. reason exe invoked if pass in /s in setup.exe

here oninstsuccess function

function .oninstsuccess     ifsilent +2 0     exec '"$instdir\tools\cobraconfigure.exe"' functionend 

works fine me. doing setsilent normal anywhere in script?


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -