01-27-2025 04:48 AM
I have the ni-elvis-iii-software-bundle-x86_3.0_suite_online.exe and i want to able to automate only installing NI ELVISmx and NI-DAQmx with a bat file how do I do this?
04-10-2025 07:47 AM
To automate the installation of NI ELVISmx and NI-DAQmx using a batch file, try these steps.
Ensure the installer file "ni-elvis-iii-software-bundle-x86_3.0_suite_online.exe" is available.
Create a batch file (e.g., install_ni_software.bat) using a text editor.
Write the following commands in the batch file to execute the installer silently:
@echo off
REM Path to the installer
SET INSTALLER_PATH="C:\path_to_your_installer\ni-elvis-iii-software-bundle-x86_3.0_suite_online.exe"
REM Silent installation with specified features
%INSTALLER_PATH% /quiet /features NI-DAQmx NI-ELVISmx /acceptlicenses yes /r:n
With the batch file above, you would be able to;
run the installation silently,
install only the specified components,
automatically accept license agreements,
suppress automatic reboot after installation.
Execute the batch file on the target machine with administrative privileges.
After the installation, check to ensure NI ELVISmx and NI-DAQmx are installed correctly.
Let me know if this solves your problem!