WhiteOwl
23rd February 2009 20:57 UTC
Title for ExecWait
I have in my .nsi something like this:
Section "-download modules"
ExecWait '"$INSTDIR\ftp_client.exe" remoteserver/remotefolder1 $INSTDIR/modules/localfolder1'
ExecWait '"$INSTDIR\ftp_client.exe" remoteserver/remotefolder2 $INSTDIR/modules/localfolder2'
SectionEnd
Is it possible to hide this long commands from installer window and log behind some "downloading 1st group of modules", "downloading another group of modules"?
Anders
23rd February 2009 21:03 UTC
DetailPrint "doing foo"
SetDetailsPrint none
....
SetDetailsPrint lastused
WhiteOwl
23rd February 2009 22:29 UTC
What is "lastused"?
It is mentioned in documentation but not explained.
LoRd_MuldeR
23rd February 2009 23:31 UTC
Originally posted by WhiteOwl
What is "lastused"?
It is mentioned in documentation but not explained.
Go back to whatever mode was used before you called "SetDetailsPrint" the last time...