This can be done by running a batch file after the installer.
1. Include all your files (VIs and .exe) in your project including the batch file that will run this VIs.
2. When creating the installer, add them as
Source Files.
3. In
Advanced tab choose
Run executable at end of installation and select your batch file.
4. Your batch file will the run the commands you have programmed to it. For example copy VIs from one folder to instr.lib or run other executables/installers.
Additional Information
Batch files are supported by Microsoft.
A batch file does the work of a mediator between you and the command prompt. It is a file – with .bat, .cmd, .btm file extensions – containing the CMD commands. When you run a batch file, the commands written in it are executed in the Command Prompt following a serial fashion. Otherwise, these would have to be entered manually, line by line. The set of commands is also known as a batch script.
Below you can observe an example code:
ECHO OFF
xcopy "%cd%\Tektronix AFG 3000 Series" "C:\Program Files (x86)\National Instruments\LabVIEW 2016\instr.lib" /E /I
start "C:\Program Files (x86)\National Instruments\LabVIEW 2018\LabVIEW.exe"
PAUSE
The second line copies the content of a folder called "Tektronik AFG 3000 Series" into the folder "...\instr.lib" where device drivers are hosted. /E and /I commands are used to copy all subfolders content and to create a directory if there is none.
The third line runs LabVIEW.exe after copying the files. This can be replace by your third party installer .exe.
First and fourth line are used for visibility purposes and can be removed.