简体   繁体   中英

How do create progress bar while clicking remove button in nsis?

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?

在此处输入图片说明

卸载输出列表由ShowUninstDetails (编译时)和SetDetailsView (运行时)控制。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM