Reputation: 245
During the installation executables are generated in the temp directory (e.g. C:\Users\<username>\AppData\Local\Temp\e4j2120.tmp_dir1543476478
). Where the last part seems to be mostly random.
Is there a way to configure this location? We have a client with restrictions on executables in the temp-directory, in order for them to add an exception they need to know in advance where the files will be. So for example if we could set it to C:\Users\<username>\AppData\Local\Temp\<our application name>
that should solve the problem
Upvotes: 2
Views: 626
Reputation: 48070
On Windows there is a command line option for the installer to set the temporary directory:
installer.exe -temp <path to temp dir>
Upvotes: 1