I want to run my uninstaller without making a copy into the temp dir (as I need it's return value). So I would normally do:
but my uninstaller needs also another param so if you write:
ExecWait '$UninstString _?=$INSTDIR'
it's fine, but if you use
ExecWait '$UninstString ${NO_REBOOT} _?=$INSTDIR'
it will ruin the cmd line params.
ExecWait '$UninstString _?=$INSTDIR ${NO_REBOOT}'
Is this a bug or a well known issue?
Thx,
Viv