Run another installer at the end of a LabVIEW installer

Since the DIAdem installer is not an optional installer to include with a LabVIEW built installer, I have decided to copy the files to the destination PC and run the DIAdem installer at the conclusion of my program's installer.  This does not work because there is another installer, i.e. my built installer, that is still in progress and it results in the following error.  Does anyone know of a way around this?
Note:  I have tried it through a batch file and in another executable VI to perform the same action.

Sounds like you've already seen this:
Running another MSI installer Using Batch Files
I got this working for one of my projects but I think it involved some batch file wizardry that I've since forgotten.

Similar Messages

  • CS6 Design and Web Premium - Install Error "You are already running another installer,"

    Hi
    I have just downloaded CS6 Design and Web Premium and I have been having problems running the Adobe Installer on a Windows 8 HP laptop. The Adobe installer gets 75% way through the setup process and then stops with error message "Installerfailed to initialise".
    I have run Adobe Support Advisor and the error message is "cpsid_82829s6: "You are already running another installer," bootstrapper error has occurred."
    I have looked at the FAQ's and have done the following
    I have checked System Resources -> Process and I can't see any other setup programmes running
    I have run CS5 Cleaner tool and cleared out any older versions of adobe products
    Rebooted the laptop
    Tried running the Adobe Installer and the same error messages appear.
    Submitted/packaged the Adobe Support Adviser - 40-85436-165301042013
    I did prevousily have CS6 Cloud Trial running on the Laptop but all of the porgramms have been uninstalled and the CS5 Cleaner Toll appears to have cleared any remaining elements.
    I would be grateful for some help and advice in sorting this out.
    Kind regards
    Steve

    Hi
    I have hopfully attached a PDF with screen shots of the process.
    Hopefully will be of some help in resolving the problem.
    Kind regards
    Steve

  • I have an Iad2 and ever since ios6-there are issues.I get occasional lock-ups and have to reboot. The WSJ app freezes when running their videos to the end. The only work-around is to stop the video before it's over. Worse than windows me !!!!!

    My Ipad2 worked perfectly before ios6 upgrade. It now freezes occasionally and I have to reboot to get it to work. Also the WSJ app will now freeze if I try and run one of their videos that is imbedded in the article. My only work-around is to stop (press done) before the end of the video or I have to do a total reboot. The problems remind me of Windows ME . Will Apple resolve these issues or become more like Microsoft. Hopefully there will be a restore button in the future like Microsoft was forced to do because a lot of upgrades are just terrible. Am I crazy or are there other people having the same issues with ios6, or could this just be a coincidence and my ipad2 is starting to fail just when ios6 arrives ?

    I know this will not help but, the bluetooth headset I purchased for my wife works great and it pairs with our car and our sound bar in the livingroom (Motorola Droid Razr) 98.72.16.XT912.Verizon.en.US
    However I did not upgrade over the air but from a android web site and placed it on my external sd card. I believe this made the difference in why we had no issues and upgraded functionality has been great.
    Please note when I mention these bluetooth devices I mean the Razr connects with no problems.
    It also had no internet issues and none of the problems others have complained about in other threads.
    unfortunately when you say thousands have these issues I cannot say that is accurate. The hope is when large numbers of owners have updated to the Jelly Bean and are complaining inmase then Motorola will issue a patch to verizon to get out to the affected users.
    Of course now that Google owns Motorola Mobility and has laid off loads of workers it may never issue an os patch.

  • When I try to start Firefox, I get a message that it is already running but not responding and I can't run another Firefox at the same time. I uninstalled and reinstalled. No change. Tried various other suggestions. Help!!

    When I try to start Firefox, I get a message that it is already running, but not responding and that I should close it before trying to run another Firefox. But I cannot find a way to close Firefox program that is not running as far as I can see. I tried uninstalling and reinstalling Firefox, but that did not work. I've tried various other things, but no luck. I thought programs should stop when the computer is turned off, but that didn't work either.

    How are you opening the Profile Manager?
    *http://kb.mozillazine.org/Profile_Manager
    Sounds that Firefox is still or already running.<br />
    See:
    *http://kb.mozillazine.org/Kill_application

  • Move SCCM client to another OU at the end of the deployment task sequence

    Hi
    I'm looking to modify my SCCM task sequence so that it can put a computer in the correct OU at the end of provisioning. I've come across a couple of scripts to do this, but neither are working at the moment
    1. A few lines of PowerShell here (http://stackoverflow.com/questions/22966037/move-computer-to-new-ou-in-sccm-2012-task-sequence-with-powershell)
    C:\windows\system32\WindowsPowerShell\v1.0\powershell.exe -command iex \" `$TargetOU=\"\"OU=TargetOUName,DC=ConglomiCo,DC=com\"\"; `$SysInfo=New-Object -ComObject \"\"ADSystemInfo\"\";`$ComputerDN=`$SysInfo.GetType().InvokeMember(\"\"ComputerName\"\",\"\"GetProperty\"\",`$Null,`$SysInfo,`$Null);`$Computer=[ADSI]\"\"LDAP://`$ComputerDN\"\";`$OU=[ADSI]\"\"LDAP://`$TargetOU\"\";`$Computer.psbase.MoveTo(`$OU);"
    With the above command, I keep on receiving a syntax error and/or invalid OU error. My specified OU is valid and I'm using an account with sufficient permissions to move computers in AD. I also find the syntax with the "\" difficult to follow.
    2. The second script I've tried here, doesn't seem to work either:
    http://blog.coretech.dk/jgs/vbscript-move-computer-object-to-another-ou-via-command-line-parameter/
    On Error Resume Next
    'Get MachineObjectOU Value
    Set wshNetwork = CreateObject("WScript.Network")
    Set oFso = CreateObject("Scripting.FileSystemObject")
    Set objSysInfo = CreateObject( "ADSystemInfo" )
    Set ArgObj = WScript.Arguments
    'Use first argument as target OU
    strMachineObjectOU = strLDAPofOU
    strComputerDN = objSysInfo.ComputerName
    'msgbox(strMachineObjectOU)
    nComma = InStr(strComputerDN,",")
    strCurrentOU = Mid(strComputerDN,nComma+1)
    strComputerName = Left(strComputerDN,nComma - 1)
    'msgbox(strCurrentOU)
    'If current ou is different than target OU. Move object
    If UCase(strCurrentOU) <> UCase(strMachineObjectOU) Then
        Set objNewOU = GetObject("LDAP://" & strMachineObjectOU)
        Set objMoveComputer = objNewOU.MoveHere("LDAP://" & strComputerDN, strComputerName)
        'msgbox("LDAP://" & strComputerDN & strComputerName)
    End If
    If I put this script into a task sequence, how does SCCM know which computer to move in AD? I'm assuming by using variable strComputerDN = objSysInfo.ComputerName
    Thanks in advance
    IT Support/Everything

    If I put this script into a task sequence, how does SCCM know which computer to move in AD? I'm assuming by using variable strComputerDN = objSysInfo.ComputerName
    Correct. Jörgen did a post about the usage of that script a long time ago that should help you, see:
    http://ccmexec.com/2010/12/move-computer-to-the-correct-ou-during-deployment/
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Jdeveloper runs another program as the selected one

    After selecting a program (from Java Examples) and trying it to
    run or debug, JDeveloper starts another program which runs
    before. This behaviour is independent of the entry in "Default
    Runable Class/File" in Project property, Run/Debug tab. If this
    entry is empty, the first try to run my program writes in this
    field the other program I don't want to execute. How works the
    program execution exactly? JDeveloper has to register somewhere
    the previous running program and overrule the standard
    (executing the selected program). Does anyone know this
    difficulty?
    Thanks for the hints.

    Georg,
    I have done some testing and am not having any problems with
    this.
    My suggestion is:
    Make sure the samples you want to run are in your project.
    Make sure Show enty points on classpath is not selected.
    Right-click the program (with a Main()), select Run from the
    context menu.
    The Run option from the top menu automatically selects (in this
    order) the selected program in the navigator, or if one is not
    selected, the first one in the project.
    The safest way is to right-click the one you want and run it
    from the context menu.
    Gary
    JDev Team

  • Firefox 8 puts new tabs opened from links in another tab at the end of the tab list, NOT next to the tab it came from like in V3.6. I want it next to the tab it came from. How do I get it to do this?

    Question as stated, sums it up. When I click the mousewheel on a link in a tab I want a new tab open with that link and I want it next to the tab I clicked the link in just like Firefox V3.6 did. Firefox 8 is always opening the new tab at the end of the list and boy is this annoying!
    Please tell me how to fix this.

    type in the address bar '''about:config'''
    then press the button '''i'l be careful i promise'''
    then type in the bar '''browser.tabs.insertRelatedAfterCurrent'''
    then '''Right-click''' click on it, and select '''Toggle''', and you see changing the value from True to '''False'''.
    exit firefox and restart.
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • How to run another application in the project?

    Well, the title says it all really. I created a new
    application within my existing project but I can't get it to run as
    it always runs my main application (which has a little blue sphere
    on its icon).
    How can I get the other application to test and/or
    run?

    Managing launch configurations
    Launch configurations are used both to run and to debug
    applications. Flex Builder provides a default launch configuration
    for Flex and ActionScript applications. When you first run or debug
    a project, a project-specific launch
    configuration is created. You edit the launch configuration
    to change the default main application file. You can also
    modify the default launch path to run or debug in the
    stand-alone Flash Player rather than in a web browser.
    Creating or editing a launch configuration
    When you create and build a project, it is ready to be run or
    debugged. Both running and debugging of the applica-
    tions in your project are controlled by a launch
    configuration. By default, Flex Builder creates a launch
    configuration for each of the application files in your project the
    first time you run or debug them. The configurations are based on
    the default Flex application configuration, and you can edit them
    as necessary.
    Launch configurations are managed in the Create, Manage, and
    Run Configurations dialog box.
    using_fb_flex3.pdf
    Chapter 11: Running and Debugging Applications

  • Keeping a logo inline with the end of a text layer

    How do I anchor or parent another layer to the end of a text box?  For example, I want have a logo at the end of a text layer saying "Weeknights" and have the position of the logo automatically adjust when I change the text to something shorter or longer such as "Tonight" (I cannot right justify the text as I need to have the front of it line up with something else)

    Since you say NOTHING about air times, this gets pretty easy:
    Weeknights
    Sunday
    Monday
    Tuesday
    Wednesday
    Thursday
    Friday
    Tomorrow
    Tonight
    What is that, nine variations?  That's ALL? 
    And you want a fancy expression for it?  How long can it take to make all nine: an hour if you're drunk, sleep-deprived and crippled, perhaps?
    I think you're looking for a complicated solution where none is necessary.

  • Run another application

    hello peepz...
    i was wondering if it is possible to run another application when the user open another. what i mean is when user open applicationA, it will automatically run applicationB. The reason why i need this is because i want to use applicationB as a database engine to poll data from a device but i cannot combine applicationA and applicationB together in one application because when i run the engine, the program just hang.
    so would appreciate it if someone show me how i could do that...
    thanx
    farah k.

    As in
    MainClassOfApplicationB.main(someArgumentArray);?^
    The question is: is "running" it all you want to do or do you want those parts to actually communicate?

  • Exported MP4's sometimes crash during playback, just before the end.

    I experience this problem pretty often, only when playing back in Windows Media Player.
    I'll export a video to MP4 (usually AppleTV 720p, H.264).  When I play back my exported video in WMP, it'll get to the very end and crash with about 2 seconds left.  The message will be "Windows Media Player Encountered a Problem When Playing Back This File."  If I click through to web help, I'm told it's a "Windows Media Player C00D11B1" error, which looks to have something to do with sound.
    In general, the error seems to happen if I try to fade my video out to to black (Opacity 0) at the end, or have my audio run a little past the end fo the video, or things like that.  But it's not consistent. 
    Does anyone have any idea what's going on?  What might it be about the end of my project that's causing the playback to crash? 
    Thanks,
    Mo

    I'll agree with that, but that's not really a solution.  I can't control what clients will use for playback. 
    I'm interested in finding the root cause of the problem, if anyone has any ideas. 
    For the current video that's crashing, I tried a different preset: "HDTV 720p 29.97 High Quality"  and now WMV plays it all the way through.   Maybe the preset "AppleTV 720p, H.264" is the problem? 

  • How to add an extra row at the end of the Grid?

    Hi gurus,
    I am getting result from the select query which has 4 columns.
    I got the requirement to display the sum of those columns as the last row.
    How can i add the another row at the end of the iGrid ?
    Data would look like
    Sno  Col1   Col2  Col3  Col4
    1         4       6      1       6
    2         5       8      0       8
    3         6       1      2       5
    Sum     15     14    3       19
    Do i have to add transformation to the sql query? or
    Can i add row to the display tempalate by accessing the Gridobject?
    Please help.
    Thanks
    Vansi
    Edited by: vamsi P on Feb 12, 2008 8:49 PM
    Edited by: vamsi P on Feb 12, 2008 8:49 PM

    Hi Vamsi,
    There are a few options ...
    1) The one suggested by Prasanna
    2) Loop through all rows via JavaScript and use the GridObject methods to set cell values and then perform an applet.refreshGrid( false )
    3) Apply an Inline transform
    4) Use a stored procedure to return the results and the totals as one recordset.
    The stored procedure would be the fastest for runtime.
    The Iniline XSL transform would be the second fastest.  If you specify the XSL in a generic way, you may even be able to reuse it in other scenarios.  If you hardcode the fields in the XSL, it would be a matter of simple code adjustment when you encounter a similar scenario.
    Hope this helps.
    Cheers,
    Jai.

  • When trying to download itunes 10 I receive this message at the end of the install.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.

    When trying to download itunes 10 I receive this message at the end of the install.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.

    There is a problem with the Window installer package. A program required for this intall to complete could not be run. Contact your support personnel or package venfor.
    Perhaps let's first try updating your Apple Software Update.
    Launch Apple Software Update ("Start > All Programs > Apple Software Update"). Does it launch and offer you a newer version of Apple Software Update? If so, choose to install just that update to Apple Software Update. (Deselect any other software offered at the same time.)
    If the ASU update goes through okay, try another iTunes install. Does it go through without the errors this time?

  • How do I resolve the error "Another installer is currently running, which must be closed before updating" when updating CC on MacOS 10.9.4?

    Creative Cloud keeps alerting me to an available update but whenever I try to install it it tells me there is another installer running which must be shut down first.
    I've now shut down and restarted the Mac completely and nothing else is running but it still gives me the same error (Error code: 81). See screen shot below.
    I'm running Mavericks (OSX 10.9.4). How do I resolve this?

    Please try the mentioned steps:
    1. Navigate to Applications/Utilities/Adobe Installer and look for CC desktop, if present run the uninstaller to uninstall it.
    2. Navigate to Applications/Utilities and look for Adobe Application Manager folder and Creative cloud folder. If present move to trash and empty it.
    3. Navigate to Library/Application Support/Adobe/OOBE and rename to OOBE.old
    4. Download CC desktop from: https://creative.adobe.com/products/creative-cloud and try to install again.
    Other references are:
    Troubleshoot CCM Applet installation and download
    Re: Adobe application manager fails to update/install
    Regards
    Rajshree

  • Hello i have been trying to install i tunes 10 on to my pc but as i get to the end of installation it comes up with the message windows installer package failed contact support or vendor how do i solve this im running vista of an acer laptop many thanks

    hello i have been trying to install i tunes 10 on to my pc but as i get to the end of installation it comes up with the message windows installer package failed contact support or vendor how do i solve this im running vista of an acer laptop many thanks

    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

Maybe you are looking for