02-04-2025 03:13 PM
Hi folks!
I created an installer for my LabVIEW application on windows. I was able to run it silently with accepting all licenses and suppressing reboot with the following command:
Considering that the "install.exe" file is placed in the same working directory
.\install.exe /qn /AcceptLicenses yes /r
It always install the application in "ProgramFiles(x86)" directory. I want to mention the specific installation directory in the above command. How can I do that?
Thanks!
Regards
HB
02-04-2025 03:39 PM
As per the documentation, you can prefix it with a path to install it to
<path to install at> \install.exe /q /acceptlicenses yes
https://www.ni.com/docs/en-US/bundle/labview/page/installing-labview-built-installers-silently.html
02-05-2025 10:42 AM
It did not work. I believe what you are referring to is "the location of installer (install.exe)" and NOT the path where the installation should take place.
Can you please confirm?
Thanks!