I am trying to automate installation of NI-VISA, NI-488.2, and NIDAQmx from PowerShell; I would like to do this for consistency and ease of installation by less experienced users. I would like to perform these installations silently, and more importantly suppress a restart of the PC until all three have run (variously Windows 10, and 11).
For each, I have tried:
"Start-Process -FilePath <path to installer>\Install.exe /q /norestart -wait"
Can anyone guide me in how to perform these installations as described?
Where would I find documentation for this?