Difference between revisions of "Labview"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
 
Line 1: Line 1:
'''LabView''' is an IDE targeted to laboratory instruments. More infos from [http://www.ni.com/lwcvi/ here].
+
'''LabVIEW''' is an IDE for laboratory and industrial measurement, automation and control. More infos from [http://www.ni.com here].
  
=== Labview 8.6 ===
+
=== LabVIEW 8.6 ===
  
 
First you need to create a nisuite.xml by using the flag: /generatespecfile
 
First you need to create a nisuite.xml by using the flag: /generatespecfile
Line 10: Line 10:
  
 
<source lang="xml">
 
<source lang="xml">
<package id='labview8' name='Labview 8.6' revision='1' reboot='false' priority='1239' >
+
<package id='LabVIEW8' name='LabVIEW 8.6' revision='1' reboot='false' priority='1239' >
 
<check type='file' condition='versiongreaterorequal' path='%PROGRAMFILES%\National Instruments\LabVIEW 8.6\LabVIEW.exe' value='8.6.0.4001' />
 
<check type='file' condition='versiongreaterorequal' path='%PROGRAMFILES%\National Instruments\LabVIEW 8.6\LabVIEW.exe' value='8.6.0.4001' />
  
<install cmd='%PACKAGES%\labview\8.6\setup.exe /q /r:n /acceptlicenses yes /applyspecfile %PACKAGES%\labview\8.6\' />
+
<install cmd='%PACKAGES%\LabVIEW\8.6\setup.exe /q /r:n /acceptlicenses yes /applyspecfile %PACKAGES%\LabVIEW\8.6\' />
<upgrade cmd='%PACKAGES%\labview\8.6\setup.exe /q /r:n /acceptlicenses yes /applyspecfile %PACKAGES%\labview\8.6\' />
+
<upgrade cmd='%PACKAGES%\LabVIEW\8.6\setup.exe /q /r:n /acceptlicenses yes /applyspecfile %PACKAGES%\LabVIEW\8.6\' />
 
 
 
<remove cmd='"%PROGRAMFILES%\National Instruments\Shared\NIUninstaller\uninst.exe" /qb /x all' />
 
<remove cmd='"%PROGRAMFILES%\National Instruments\Shared\NIUninstaller\uninst.exe" /qb /x all' />
Line 22: Line 22:
  
  
This is a silent installer and uninstaller for Labview 7.
+
This is a silent installer and uninstaller for LabVIEW 7.
  
 
<source lang="xml">
 
<source lang="xml">
<package id="labview" name="Labview" revision="1" priority="0" reboot="true">
+
<package id="LabVIEW" name="LabVIEW" revision="1" priority="0" reboot="true">
 
  <check type="file" condition="exists" path='%PROGRAMFILES%\National Instruments\LabVIEW 7.0\LabVIEW.exe' />
 
  <check type="file" condition="exists" path='%PROGRAMFILES%\National Instruments\LabVIEW 7.0\LabVIEW.exe' />
  <install cmd='%SOFTWARE%\labview\windows\setup.exe /q /r:n' >
+
  <install cmd='%SOFTWARE%\LabVIEW\windows\setup.exe /q /r:n' >
 
  <exit code="3010" />
 
  <exit code="3010" />
 
  </install>
 
  </install>

Latest revision as of 13:19, 19 September 2018

LabVIEW is an IDE for laboratory and industrial measurement, automation and control. More infos from here.

LabVIEW 8.6

First you need to create a nisuite.xml by using the flag: /generatespecfile

ex: setup.exe /generatespecfile C:\

Copy nisuite.xml to your installation folder

<package id='LabVIEW8' name='LabVIEW 8.6' revision='1' reboot='false' priority='1239' >	
<check type='file' condition='versiongreaterorequal' path='%PROGRAMFILES%\National Instruments\LabVIEW 8.6\LabVIEW.exe' value='8.6.0.4001' />

<install cmd='%PACKAGES%\LabVIEW\8.6\setup.exe /q /r:n /acceptlicenses yes /applyspecfile %PACKAGES%\LabVIEW\8.6\' />
<upgrade cmd='%PACKAGES%\LabVIEW\8.6\setup.exe /q /r:n /acceptlicenses yes /applyspecfile %PACKAGES%\LabVIEW\8.6\' />
		
<remove cmd='"%PROGRAMFILES%\National Instruments\Shared\NIUninstaller\uninst.exe" /qb /x all' />
<remove cmd='IF EXIST "%PROGRAMFILES%\National Instruments" rmdir /s /q "%PROGRAMFILES%\National Instruments"' />
</package>


This is a silent installer and uninstaller for LabVIEW 7.

<package id="LabVIEW" name="LabVIEW" revision="1" priority="0" reboot="true">
 <check type="file" condition="exists" path='%PROGRAMFILES%\National Instruments\LabVIEW 7.0\LabVIEW.exe' />
 <install cmd='%SOFTWARE%\LabVIEW\windows\setup.exe /q /r:n' >
 <exit code="3010" />
 </install>
 <remove cmd="msiexec /x{2C585265-527B-4D76-B9B4-2F037C33C40C} /qn /norestart" />
</package>