Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to read a command line parameter given to an uninstaller?

Using NSIS, how can I read a (optional) command-line parameter provided to an uninstaller?

I don't need to read it by name-- just reading the first parameter given could be enough.

like image 280
Cuga Avatar asked Jul 15 '10 13:07

Cuga


2 Answers

For anyone else's benefit, here's the actual code I used.

Program executed with parameter:

C:\path\to\program.exe -SELECT-DATA=FALSE

Then inside the uninstaller's un.onInit method:

Function un.onInit
  ${GetParameters} $R0
  ${GetOptions} $R0 "-SELECT-DATA=" $R1
  MessageBox MB_OK "Value read: $R1"
FunctionEnd

Will pop up a message box with the value: FALSE

like image 75
Cuga Avatar answered Oct 03 '22 07:10

Cuga


Use the GetParameters and GetOptions helper functions in FileFunc.nsh (Included with NSIS)

like image 23
Anders Avatar answered Oct 03 '22 08:10

Anders