Yes, this is possible by using the .INF file when you select "Extract files and run the installation command." You must install the .INF file as your installer, and in the DestinationDirs section, you put the path in the directory where the files should be sent. The following is an example .INF file:
[version] signature="$CHICAGO$" [DefaultInstall] CopyFiles=install.files [DestinationDirs] install.files=-1,"C:\Program Files\MyCustomDir" [install.files] MyFile1.txt MyFile2.bmp
So this example shows that the installer will install C: \ Program Files \ MyCustomDir. The files under install.files should display all the files you want to copy to this folder. They should be included in your installer when selecting files to add.
source share