This isn't about file visibility (hidden files vs whatever); this is about, what the user sees, while the installer is running.
Within the Files
section of my script, I have the following
[Files]
Source: "02639d71-0935-35e8-9d1b-9dd1a2a34627\*"; \
DestDir: "{localappdata}\02639d71-0935-35e8-9d1b-9dd1a2a34627"; \
Flags: recursesubdirs onlyifdoesntexist
(Nothing malicious; just various program-necessary files and application configuration files).
I don't want the user to be able to see where these files are going when the installer is running. How can I configure Inno Setup so that it doesn't show the user when (and to where) these files are being installed?
EDIT:
I have accepted the answer below, but in case the links are deprecated ( and to shorten the trip of anyone who wants to do what I needed to do ), I have included an abridged version here. What I wanted to do ( while not knowing exactly how to word it ) was to hide the files being installed within the "installing" page.
To do that, add the following to the INNO script under the Code section -
procedure InitializeWizard;
begin
WizardForm.FilenameLabel.Visible := False;
end;