Installer Group: This is what it takes to do a network install of labview.

Here is the install.bat file we made to do this.  Keep in mind, this just “appears” to install everything listed in it correctly as a clean install.  Proton is our network drive. 
@Echo Off
@Echo Starting Labview 8.2 Installation
\\Proton\LoginUpdates\LV-10-06\LV8.2\setup.exe \\Proton\LoginUpdates\LV-10-06\LV8.2\Bin\NoUser.tx​t /r:n /q /AcceptLicenses yes
@Echo Starting CVI 8.0.1 Installation
\\Proton\LoginUpdates\LV-10-06\CVI8.0.1\setup.exe \\Proton\LoginUpdates\LV-10-06\CVI8.0.1\support\No​User.txt /r:n /q /AcceptLicenses yes
@Echo Starting Signal Express 1.1.1 Installation
\\Proton\LoginUpdates\LV-10-06\SignalExpress1.1.1\​setup.exe \\Proton\LoginUpdates\LV-10-06\SignalExpress1.1.1\​Bin\NoUser.txt /r:n /q
@Echo Starting Toolkit Installations
@Echo ---- Starting Advanced Signal Processing
\\Proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​VIEW\Advanced Signal Processing\setup.exe" "\\Proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​VIEW\Advanced Signal Processing\supportfiles\NoUser.txt" /q /r:n
@Echo ---- Starting Digital Filter Design
\\Proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​VIEW\Digital Filter Design\setup.exe" "\\Proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​VIEW\Digital Filter Design\supportfiles\NoUser.txt" /r:n /q
@Echo ---- Starting Database Connectivity
\\proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​VIEW\Enterprise\Database Connectivity\Setup\lv_dbtools.msi" /passive /norestart
@Echo ---- Starting Internet kit
\\proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​VIEW\Enterprise\Internet\InternetToolkit6.0.msi" /passive /norestart
Echo    **** Labview SPC Toolkit can not be installed silently ****
Echo    ****         You will need to install manually         ****
@Echo ---- Starting Express VI Development
\\proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​VIEW\Express VI Development\ExpressVIDev\ExpressVIDev.msi" /passive /norestart
@Echo ---- Starting PID Control
\\proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​VIEW\PID Control\setup\lv_pid_6.msi" /passive /norestart
@Echo ---- Starting Report Generator
\\proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​VIEW\Report Generation\lvoffice\lvoffice.msi" /passive /norestart
@Echo ---- Starting State Diagram
\\Proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​VIEW\State Diagram\StateDiagTK.msi" /passive /norestart
@Echo ---- Starting VI Analyzer
\\Proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​VIEW\VI Analyzer\setup.exe" /q /r:n
Echo    **** CVI SPC Toolkit can not be installed silently ****
Echo    ****       You will need to install manually       ****
@Echo ---- Starting SQL Kit
\\Proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​Windows CVI\Enterprise\SQL\Sql2.msi" /passive /norestart
@Echo ---- Starting PID for CVI
"\\Proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​Windows CVI\PID Control\setup.exe" /q /r:n /AcceptLicenses yes
@Echo ---- Starting Signal Processing for CVI
"\\Proton\LoginUpdates\LV-10-06\ToolKitSoftware\Lab​Windows CVI\Signal Processing\Setup.exe" /passive /norestart
@Echo Toolkit Installations Completed...  Please install manual components.
@Echo Starting NIDaq 8.3, NIMotion 7.4, NIVisa 4, etc... Installation
\\Proton\LoginUpdates\LV-10-06\DCD-Nov06-1\setup.e​xe \\Proton\LoginUpdates\LV-10-06\DCD-Nov06-1\spec.in​i /r:n /q /AcceptLicenses yes
@Echo Installation Complete......
Now this took us weeks to make.  Notice you have three different types of installers with different command line switches.  there isn't even a set of NI standards.  It took us a long, long time to put this together, trying an install and wiping the PC clean over and over and over until we finally came up with this...
So my question is, are you guys sure it was such a good idea not to use a standard MSI file?  You really need the NI custom installer with non-group-policy-compatible msi's?
If you gave us real msi files this could have been much easier!
Message Edited by billings11 on 10-09-2007 02:17 PM
-Devin
I got 99 problems but 8.6 ain't one.

Hi Billings11,
To recap, here is Andrew's previous response:
You are correct in pointing out that NI's MSIs do not function as normal MSIs.  We made the decision to create functionality which would extend MSI and allow us to create more robust installers.  Our current installer framework acts as a supervisor over the installation.  It has the ability to mark and match dependencies (more functionality than the MSI reference count) which are important when other NI products are being installed or if any product is uninstalled.  The installer framework also provides a lookup service to all of the MSIs which can provide any installer with specific information about other NI products installed on the machine, paths to those products, etc.  The framework gives the ability for groups within NI to create separate installation parts (MSIs) which can be brought together into one installer without recreating a single distribution MSI from scratch.
Extending functionality outside of normal MSIs also means that installation via a network group policy is no longer supported. 
To support deploying through Active Directory, we would need to remove our installer framework instead and ship each piece of software as a single MSI.  The features our framework provides would be eliminated, and much of the burden of tracking dependencies would be pushed onto the customer.  Installation procedures would most likely become more complex, as each MSI would also be relatively blind to the current set of NI products on the machine.
To distribute the NI installers to many machines, our recommendation would be to place the installer on the network, use Active Directory to define the policy, and then distribute the software through Microsoft SMS (or a similar tool) by running the installer in silent mode.  This involves creating a spec file, and then running 1 or more installers silently as part of a batch file.  You had already brought up this point in a previous post:
"You might suggest running batch files as login scripts.  But it takes longer for someone to create and test a batch file silent install than new installation in a real MSI file.  You have to look up all the right switches to run the installation in silent mode with the right options - its a pain.  Its really better in the long run to take the time to recreate NI's installation from scratch so you can have a real windows installer from that point forward."
I completely agree that the process for creating a batch file for the silent installation of NI products should be improved.  We are working hard to create a process in which you can 1) create a spec file simply and quickly and 2) be able to run the installer easily in silent or basic mode.  These improved features should reduce the issues your IT would have with NI software distribution through Microsoft SMS (or equivalent product).
Thanks again for your comments and have a great day!
Andrew W
Software R&D
National Instruments
Cheers,
David Goldberg
National Instruments
Software R&D

Similar Messages

  • Hi there, i erased my macbook and trying to reinstall it, i keep getting an error message"could not find installation for this machine" please what can i do?

    Hi There,
    I erased my macbook and trying to reinstall it, i keep getting an error message "could not find installation for this machine" what must i do please?

    It is the internet connection.
    Try again or another internet connection.

  • In the middle of the installation processing, this has appeared: "There is a problem with the windows installer package. A program is required for this install to complete could not be run." my question is, what is that specific program?

    in the middle of the installation processing, this has appeared: "There is a problem with the windows installer package. A program is required for this install to complete could not be run." my question is, what is that specific program?

    Let's try the following user tip with that one:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • Help plzzzzz i try to download the itunes 10.5 windows vista but it not working this is what it show "there is a problem with this windows installer package. a program required for this install to complete could not be run. contact your support personnel

    i neen try to down load the new itunes 10.5 for windows vista but for some reason it is not working at all . this is what it show for the errors is "there is a problem with this windows installer package . a program required for this install to complete could not be run. contact your support personnel or package vendor" plz help me with this!!!!!!!

    Repair your Apple software update.
    Go to START > ALL PROGRAMS > Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install
    If you don't find ASU, go to Control Panel:
    Start > Control Panel > Programs n Features > highlight ASU and click CHANGE then REPAIR,

  • I have just purchased a new windows pc running windows 8 and am unable to install itunes 11 on my machine, when i tick download now it takes me to a screen that wants to show me whats new but has no tab to run installation or continue past whats new

    I have just purchased a new windows pc running windows 8 and am unable to install itunes 11 on my machine, when i tick download now it takes me to a screen that wants to show me whats new but has no tab to run installation or continue past whats new

    Use a different browser.
    iTunes can only be installed and run in desktop mode.

  • I am having an installation failure issue with my itunes 11 software.  File is corrupted and i don't know what to do.  I've un-install and re-installed the software three times and continue to get the same error message.  It states that "This copy of ITun

    I am having an installation failure issue with my itunes 11 software.  File is corrupted and i don't know what to do.  I've un-install and re-installed the software three times and continue to get the same error message.  It states that "This copy of ITunes is corrupted or is not installed correctly.  Please reinstall Itunes"
    iMac, iOS 6

    HI,
    If your old version of iTunes is still working - then I sugest you stick with that.
    iTunes 11 is a lousy update - It will not retain your playlists, you can't find and delete duplicates... and a whole arry of oyher issues. (have a look around this forum to see how many issues IT11 gives people)
    Just a friendly advise and warning :-)

  • I am trying to install OSX and I get "could not find installation information for this machine" what do it do?

    Trying to install OSX and i get "could not find installation information for this machine" what do i do?

    someone will be by to edit, in the meantime, NEVER post your serial number.
    They wanted you to go to the Hardware section of System Profile and the part that looks like
    MACBOOK PRO N,1
    Anyone here has Mac Pro of 1,1 thru 6,1
    http://www.everymac.com is a good place to look at model specs and history of that model, max RAM and other features.

  • When I issue the 'Force group Settings' command what effect will this have on existing flows? Do I need to disable WCCP prior to issuing this command on the affected WAE's?

    Hi WAAS Experts,
    I have a query, when I issue the 'Force group Settings' command what effect will this have on existing flows? Do I need to disable WCCP prior to issuing this command on the affected WAE's?
    Thanks,
    Shankar K

    Hi Shankar,
    A change of classifier/policy on the WAE is not affecting the existing flows so you shouldn't need to disable WCCP if you want to force group settings there.
    Regards,
    Nicolas

  • Help - Installation Groups with Hierarchies

    Hi experts ,
    I created Installation Grouping with Hierarchies Set-up (Please find the attached Doc)
    Using UTILIT85 Variant to derive Primary Installation billing relevant consumption , & Billing of primary is happening perfectly fine but When I am performing Billing of 2nd level Secondary installation (Which also have 3rd level Secondary installations)  3rd level installations consumption is not deducting from this 2nd level Secondary installation .
    If I check DBERCHV table for Primary Bill Doc then there is -ve consumption line present for this installation , But during billing system is not deducting this consumption from Secondary meters consumption .
    Please tell where I am doing wrong or what step I am skipping .
    Please find the attachment with more clarity (What exactly I am doing)

    Manoj:
    Asking for documentation is not the appropriate approach in the forums.  Please read Research Resources and Rules of Engagement.  Ask a specific question, indicating what you have tried and where you have failed or are having issues.
    This thread is locked.
    regards,
    bill.

  • Installation Groups with Hierarchies

    Hi Experts ,
    If anybody of you ever worked on Installation Groups with Hierarchies (Multilevel Main & Sub)  please share the Document or provide me the link .

    Manoj:
    Asking for documentation is not the appropriate approach in the forums.  Please read Research Resources and Rules of Engagement.  Ask a specific question, indicating what you have tried and where you have failed or are having issues.
    This thread is locked.
    regards,
    bill.

  • I can not install the newest version of iTunes because of a file that can not be found. This is what I am seeing:(The feature you are trying to use is on a network resource that is unavailable. C:\......\Application Data\Apple\Apple Software Update\

    I can not install the newest version of iTunes because of a file that can not be found. This is what I am seeing:(The feature you are trying to use is on a network resource that is unavailable. C:\Documents and Settings\Aubrie\Local Settings\Application Data\Apple\Apple Software Update\)

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page).
    http://majorgeeks.com/download.php?det=4459
    Here's a screenshot showing the particular links on the page that you should be clicking:
    After clicking one of the circled links, you should be taken to another page, and after a few seconds you should see a download dialog appear for the msicuu2.exe file. Here's a screenshot of what it looks like for me in Firefox:
    Choose to Save the file. If the dialog box does not appear for you, click the link on the page that says "CLICK HERE IF IT DOES NOT". Here's a screenshot of the page with the relevant link circled:
    When the dialog appears, choose to save the file.
    (2) Go to the Downloads area for your Web browser. Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Changed my Apple ID and this is what happens....

    I changed my apple ID last week, i figured if i change it then it would be the same on all my devices, boy was i wrong! ive nothing but trouble since i did... i changed it to my @me.com email address, which i now cant verify becasue i cant access my me.com email until i verify it!!
    Ive spoken to 3 different apple support agents over the phone, which werent much help, though i was told its a problem they are getting quite a lot at the moment.
    So anyway... nothing working still, contacts all gone, documents all gone, anything related to iCloud GONE!! atleast until i can verify my Apple ID.
    I sent a suport message to iTunes as i was told they were the only ones who could access Apple ID information and this is what i got back
    My name is Anastacsha with iTunes Store Support and I will be assisting you with your issue. I see that you are having issues verifying your apple id. I can certainly understand your desire to resolve this issue as soon as possible so you can get back to enjoying the store, and I do apologize for the inconvenience.
    I regret to inform you that we are currently unable to verify accounts at this time. This is due to our increasing efforts to maximize security on the iTunes Store. Our current stage of operations dictates that we cannot comment on why we are enhancing these various security protocols; we also will not speculate on how long this security enhancement will last. We ask that you endure this rather unfortunate circumstance with stead-fast resolve as we really do want you to enjoy the iTunes Store in the safest, most enjoyable ways possible.
    As soon as I am able to take action on your account I will write to you. I don't have any estimate time frame and do apologize for the delay and thank you for your patience. You're request is very important to me and you are currently at the top of my list.
    I just wanted to let you know that I apologize as I understand how this process has affected you. I will be holding onto your emails for as long as it takes. I am just as anxious as you are to get our customers back into their accounts, and I will be keep you updated as soon as I can.
    If you have any additional questions or concerns Paul, please let me know.
    Sincerely,
    Anastacsha
    iTunes Store Customer Support
    Not alot help really is it??
    Has anyone had this problem, and if so had it fixed??
    Many many many many thanks if you can help!

    got this issue sorted within 1 minute of walking into the Apple store!
    They logged me into my own Apple ID account and changed it (somehow)

  • I'm getting this message when I try to open iTunes: This copy of iTunes is corrupted or is not installed correctly. Please reinstall iTunes. (-42037) What do I do?

    I'm getting this message when I try to open iTunes: This copy of iTunes is corrupted or is not installed correctly. Please reinstall iTunes. (-42037) What do I do?

    Do a back up then try reinstalling.
    You should always back up before do an update, upgrade, anything with the system in case something goes wrong. That way you still have a current copy of your data.
    Try starting in safe mode, then running the update. This will disable most 3rd party sofwarelike anti virus and other things prople put on their machines that can cause problems.
    Safe mode:
    Power off, power on holding the shift key, continue to hold until you see the progress BAR then re;ase and allow to finish booting. Note this will take longer than a regular boot. Login and try running software update or use the link here to download. Use an ethernet connection if possible as it is much less prone to corruption than wireless.
    http://support.apple.com/kb/DL1614
    After download and install logout and restart normally.

  • When downloading iTunes 11.0.3 I get an error 'Error writing to file C:\Config.Msi\1c6fd5.rbf.  Verify that you have access to this directory' what do I do?

    When downloading iTunes 11.0.3 I get an error 'Error writing to file C:\Config.Msi\1c6fd5.rbf.  Verify that you have access to this directory' what do I do?
    Appreciate any help thanks,
    Will

    Hi WillHunt112,
    Welcome to Apple Support Communities.
    You may find this article helpful for troubleshooting your iTunes installation:
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Best,
    Jeremy

  • The installation of this package failed" error while installing Nov 2013 CU (KB 2889944) for SharePoint 2013

    Hi,
    I'm currently installing Nov CU on my Sharepoint 2013 farm, I have 2 APPS and 2 WFE. I successfully installed the patch in 3 servers however, I got this error "The installation of this package failed” in one of my server.
    Now i cant run the configuration wizard because it of this error.
    Any advise how on to solve this issue? it's giving me headache the whole day already.
    thanks!
    JD

    Hi Trevor,
    Thank you for your reply, I just want to share with you what i found in the msi logs.
    DEBUG: Error 2746:  Transform 9010F70000100015.0.4454.1510 invalid for package C:\Windows\Installer\27476d.msi. Expected product {90150000-10F7-0000-1000-0000000FF1CE}, found product {90150000-104B-0000-1000-0000000FF1CE}.
    MSI (s) (A8:10) [14:34:35:466]: Skipping validation for patch transform #9010F70000100015.0.4454.1510.  Will not apply because previous transform was invalid
    MSI (s) (A8:10) [14:34:35:466]: Looking for patch transform: 9010F70000100015.0.4420.1017
    1: 2746 2: 9010F70000100015.0.4454.1510 3: C:\Windows\Installer\27476d.msi 4: {90150000-10F7-0000-1000-0000000FF1CE} 5: {90150000-104B-0000-1000-0000000FF1CE} 
    DEBUG: Error 2746:  Transform 9010F70000100015.0.4420.1017 invalid for package C:\Windows\Installer\27476d.msi. Expected product {90150000-10F7-0000-1000-0000000FF1CE}, found product {90150000-104B-0000-1000-0000000FF1CE}.
    MSI (s) (A8:10) [14:34:35:466]: Skipping validation for patch transform #9010F70000100015.0.4420.1017.  Will not apply because previous transform was invalid
    MSI (s) (A8:10) [14:34:35:466]: Looking for patch transform: 9010FB0000100015.0.4454.1510
    1: 2746 2: 9010F70000100015.0.4420.1017 3: C:\Windows\Installer\27476d.msi 4: {90150000-10F7-0000-1000-0000000FF1CE} 5: {90150000-104B-0000-1000-0000000FF1CE} 
    DEBUG: Error 2746:  Transform 9010FB0000100015.0.4454.1510 invalid for package C:\Windows\Installer\27476d.msi. Expected product {90150000-10FB-0000-1000-0000000FF1CE}, found product {90150000-104B-0000-1000-0000000FF1CE}.
    MSI (s) (A8:10) [14:34:35:466]: Skipping validation for patch transform #9010FB0000100015.0.4454.1510.  Will not apply because previous transform was invalid
    MSI (s) (A8:10) [14:34:35:466]: Looking for patch transform: 9010FB0000100015.0.4420.1017
    1: 2746 2: 9010FB0000100015.0.4454.1510 3: C:\Windows\Installer\27476d.msi 4: {90150000-10FB-0000-1000-0000000FF1CE} 5: {90150000-104B-0000-1000-0000000FF1CE} 
    DEBUG: Error 2746:  Transform 9010FB0000100015.0.4420.1017 invalid for package C:\Windows\Installer\27476d.msi. Expected product {90150000-10FB-0000-1000-0000000FF1CE}, found product {90150000-104B-0000-1000-0000000FF1CE}.
    MSI (s) (A8:10) [14:34:35:466]: Skipping validation for patch transform #9010FB0000100015.0.4420.1017.  Will not apply because previous transform was invalid
    MSI (s) (A8:10) [14:34:35:466]: Looking for patch transform: 90107F0000100015.0.4454.1510
    1: 2746 2: 9010FB0000100015.0.4420.1017 3: C:\Windows\Installer\27476d.msi 4: {90150000-10FB-0000-1000-0000000FF1CE} 5: {90150000-104B-0000-1000-0000000FF1CE} 
    DEBUG: Error 2746:  Transform 90107F0000100015.0.4454.1510 invalid for package C:\Windows\Installer\27476d.msi. Expected product {90150000-107F-0000-1000-0000000FF1CE}, found product {90150000-104B-0000-1000-0000000FF1CE}.
    MSI (s) (A8:10) [14:34:35:482]: Skipping validation for patch transform #90107F0000100015.0.4454.1510.  Will not apply because previous transform was invalid
    MSI (s) (A8:10) [14:34:35:482]: Looking for patch transform: 90107F0000100015.0.4420.1017
    1: 2746 2: 90107F0000100015.0.4454.1510 3: C:\Windows\Installer\27476d.msi 4: {90150000-107F-0000-1000-0000000FF1CE} 5: {90150000-104B-0000-1000-0000000FF1CE} 
    DEBUG: Error 2746:  Transform 90107F0000100015.0.4420.1017 invalid for package C:\Windows\Installer\27476d.msi. Expected product {90150000-107F-0000-1000-0000000FF1CE}, found product {90150000-104B-0000-1000-0000000FF1CE}.
    MSI (s) (A8:10) [14:34:35:482]: Skipping validation for patch transform #90107F0000100015.0.4420.1017.  Will not apply because previous transform was invalid
    MSI (s) (A8:10) [14:34:35:482]: Looking for patch transform: 90104B0000100015.0.4454.1510
    1: 2746 2: 90107F0000100015.0.4420.1017 3: C:\Windows\Installer\27476d.msi 4: {90150000-107F-0000-1000-0000000FF1CE} 5: {90150000-104B-0000-1000-0000000FF1CE} 
    DEBUG: Error 2749:  Transform 90104B0000100015.0.4454.1510 invalid for package C:\Windows\Installer\27476d.msi. Expected product version == 15.0.4454.1510, found product version 15.0.4420.1017.
    I hope you can help me shed light on this.
    Regards,
    JD

Maybe you are looking for

  • Dynamically displaying a new region (row?) based on immediate user input

    Whew, figuring out a title was almost as hard as trying to explain what I want to do! Okay, a little background first. My app has 178 main data fields, spread across about 35 tables. The users want to be able to search any and all data fields. So, I

  • Satellite C855-1GQ - hard drive failure warning

    Hi suddenly my laptop has started showing me "hard drive failure warnings" and I honestly have no idea what to do about it please can someone help me. Symptom: The PredictFailure flag is set on the disk Cause: A logical disk has the SMART Predict Fai

  • READ THIS IF WINDOWS IS NOT ON C:\

    If anyone is having problems with their iPod Shuffles, not being recognized in iTunes, or not being able to update, check to see whether your Windows Operating System is installed on drive C:. If not, you will need to run a simple dos command to make

  • Acrobat X Pro link automatically goes to AcrobatXI Pro instead...

    ..which won't work with the serial number my school provided because it's only suppsed to work for Acrobat X Pro.

  • Lost Images-Time Machine-Backup??

    Thinking I was Backed Up, I erased the Picture Folder.  Sadly, this erased iPhoto and 2500 images. I have restored 700.  I think the other images are in iPhoto Library#1.  When I try and restore this folder I get a message saying ``...you don´t have