How can I hide or remove the names of files being installed from the label above the installation progress bar leaving only “ex: install”?
It appears as the files are being unpacked.

LabelCurrFileName.Caption :=
ExpandConstant('{cm:ExtractedFile} ') +
MinimizePathName(
CurrentFile, LabelCurrFileName.Font, LabelCurrFileName.Width - ScaleX(100));
LabelCurrFileName.Caption := ExpandConstant('{cm:ExtractedFile} ');
I think you want to replace the
FilenameLabellabel with your custom one. How to specify custom texts for different languages and how to use them with a custom label, that will be placed instead ofFilenameLabellabel you can find in the following script:@MartinPrikryl edit: For a complete implementation, see Inno Setup – How to create a personalized FilenameLabel with the names I want?