I want to hide certain file names (not all) during installation ( FilenameLabel ).
FilenameLabel
I saw this Hide file names on the Inno Setup progress page . Is it possible?
Some options you have:
The only right decision is not to install files that you do not want to display using the [Files] section. Install them using the code. Use ExtractTemporaryFile and FileCopy functions.
[Files]
ExtractTemporaryFile
FileCopy
An example of implementation see
Or hide the files you don't want to show from FilenameLabel to CurInstallProgressChanged . Although it is likely to show the name briefly.
CurInstallProgressChanged
Or hide the actual label and create a custom one, as shown in Hide file names on the Inno Setup progress page . In CurInstallProgressChanged copy the name of the file that you want to display from hidden to a custom shortcut.
See Inno Setup - How to create a personalized FilenameLabel with the names I want?