Archive: Splash screen while unpacking data


Splash screen while unpacking data
Hello,

I wonder whether we can display a splash screen while the setup is unpacking data - you know the "Setup is unpacking data xx%" dialog. I see that behavior with some games using InstallShield.
I don't want to show a time-blocking splash but just improve the unpacking dialog.

Can this be achieved with NSIS ?


you normally should never see the "Unpacking" Dialog.
I had the same problem, but with some thinking and right usage of ReserveFile you can minimize this.

The Problem you probably have is that you try to access data/files which are not at the beginning of the Script.
So NSIS firstly decompress everything to get to this data.


I'm pretty sure the full decompression is always executed for solid compression installers... I could be wrong, but assuming that to be correct: If you really need solid compression, one way to make NSIS execute code before it decompresses the entire archive is manually solid-compressing your files into a rar, 7z or similar archive and compressing that into your installer using non-solid compression. Then unrar the file during installation. Or, similarly, run a silent NSIS installer from inside NSIS.

Note that this will probably increase the total installation time, since you need to unpack the rar file first, then unrar the rar itself.


Solid compression doesn't mean that you only can decompress everything at once.

It means you have to decompress in the order it where compressed. So if you need the latest file of your archive, you have to decompress everything before. If its in the beginning of the archive you don't need to do this.

wikipedia explains it nicely

Because of this, there is the command "ReserveFile" in NSIS
in an none solid archiv, this command is quite useless. (probably it will achieve some speedup but it would be marginal)


Originally posted by thek
Solid compression doesn't mean that you only can decompress everything at once.
Good point. I just seem to remember differently for an NSIS installer... But yeah, on second thought, I'm probably just remembering wrong.

Yes using ReserveFile resolve my problem, thank you.