0
votes

I have created exe file using nsis script.In my script i have included Repair Remove features.

If the user select remove option it will remove the application.Its working.I have used following code for remove

    Function nsDialogpage
    ${If} $Remove == 1
      call Removed
     ${EndIf}
    FunctionEnd

Function Removed
nsExec::Exec '"$INSTDIR\uninstall.exe" /S _?=$INSTDIR'
FunctionEnd

After installed application clicking uninstal.exe it show progress bar and list of files.finally it removed the application from system. I want to run the scenario while clicking remove button.but in the above code remove the application only.It doesnot show any details.

How to achieve this?

enter image description here

1
Why are you using nsExec?Anders

1 Answers

0
votes

The uninstall output list is controlled by ShowUninstDetails (compile time) and SetDetailsView (run time).