My application requires a computer voice.
I have programmed this computer voice, so I simply put the voice computer setup into my Inno Setup script like this and run it during the installation of my appplication:
[Files]
Source: "d:\dev\projects\voice\compiled\upload\voice_setup.exe"; DestDir: "{app}\redist\tts\";
[Run]
Filename: "{app}\redist\tts\voice_setup.exe"; StatusMsg: "Installing voice"; Parameters: "/VERYSILENT";
I did it like this because I imagined the user might want to distribute the voice setup. However, I don't want this anymore. Instead, the user should not "get in contact" with this voice setup file.
Obviously I don't find the correct search term to find a sample on how to solve this problem.
Can anybody help and tell me how I could install the contained voice setup without actually copying the voice setup to a directory where the user could easily find it?