Hi,
I would like to build preinstaller which at the start will automatically (without clicking anything) unpack some files in temp directory showing the progress bar and then run the right installer and close himself. Is it possible in nsis? The problem is that I don’t know haw can I make the installer to show the progress bar during unpacking (the rest is rather easy for me).
Chris Z.
Build preinstaller
6 posts
You can use custom UI for that. NSIS wiki already has one UI like this. http://nsis.sourceforge.net/LoadingBar_UI
If you want build your own UI and don't how, you can use Resource Hacker to modify existing UI files.
PaR
If you want build your own UI and don't how, you can use Resource Hacker to modify existing UI files.
PaR
Ok
This is exactly what I need
Thanks
This is exactly what I need
Thanks
One more thing, do You know how to remove "cancel" and "close" buttons from the installator
GetDlgItem $R0 $HWNDPARENT 2
ShowWindow $R0 ${SW_HIDE}
Should go in .onGUIInit (or if using MUI, define one with MUI_CUSTOMFUNCTION_GUIINIT).
Stu
ShowWindow $R0 ${SW_HIDE}
Should go in .onGUIInit (or if using MUI, define one with MUI_CUSTOMFUNCTION_GUIINIT).
Stu
It realy works, thanks a lot.