Checking Additional Installers in LabVIEW Project Builds

Updated Jun 16, 2026

Reported In

Software

  • LabVIEW
  • LabVIEW Runtime
  • Package Manager

Issue Details

I need to find out which additional installers, such as NI-VISA Runtime or NI LabVIEW Runtime, are included when building an application installer from a LabVIEW project file (*.lvproj). I want to make sure I can match the software environment on another PC, but I no longer have access to the original development PC. I am concerned about missing drivers or runtimes during deployment and need a way to verify what was included in the installer.

Solution

There are several ways to check which additional installers are included in a LabVIEW-built installer: 

 

  1. Using the LabVIEW Project (Recommended): 

If you have access to the LabVIEW development environment and the project file: 

  • Open the project in LabVIEW. 

  • In the Project Explorer, right-click the build specification for the installer and select Properties. 

  • Go to the Additional Installers category. 

  • Here, you will see a list of all included NI installers and their versions. 

 

  1. Using the Installer on a Clean PC 

If you do not have access to the original development environment: 

  • Run the installer on a clean PC. 

  • After installation, open NI Package Manager (NIPM). 

  • In NIPM, select the Installed tab to view all installed NI software and drivers, including runtime components. 

  • Uncheck "Products Only" to also display drivers and runtime components. 

 

  1. Checking the Project File (*.lvproj) Directly 

If you only have the project file and cannot run LabVIEW: 

  • The LabVIEW project file (*.lvproj) is in XML format and can be opened with a text editor. 

  • Search for <Item Name="YourInstallerName" Type="Installer"> and look for <Property Name="DistPart[...].productName" ...> entries. 

  • Each DistPart[...].productName property lists an included installer and its version (e.g., "NI LabVIEW Runtime 2023 Q3 Patch 2"). 

  • This method allows you to identify included installers and align the environment on another PC.