LabVIEW 2010 Abrupt Termination During Installation

Hi.
I am using a computer that runs on windows 7-professional-64bit
When I tried to install LabVIEW 2010 it showed the following error msg...
the screenshots are attached.....
Best regards,
Black
Attachments:
Installation Error.zip ‏256 KB

Have you started the setup with administrative rights ? I think you have to.
I've made this setup without a problem.

Similar Messages

  • SunStudio & Mandriva 2010: critical error during installation

    Hello!
    When installing SunStudio 12 upd.1 on Mandriva 2010 x86_64, a critical error is met right after accepting the license agreement. Log is here: http://pastebin.com/49KcCqtF
    What can I do to complete the installation? Thank you.

    SlonoInquisitor wrote:
    Hello!
    When installing SunStudio 12 upd.1 on Mandriva 2010 x86_64, a critical error is met right after accepting the license agreement. Log is here: http://pastebin.com/49KcCqtF
    Yes, something wrong with installer. Probably it has never been tested on Mandriva.
    What can I do to complete the installation? Thank you.Try to download tar file and extract it without installer.
    Thanks.
    Nik

  • What to do if there is abrupt termination of RMAN during a backup session

    Hi All,
    I am trying to automate the Level 0 and Level 1 backups which we ought to take. Following the is the RMAN related part of it for L1 backup:
    CONFIGURE CONTROLFILE AUTOBACKUP ON;"
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '${BKP_LOCATION}/${LType}_%F';"
    run {"
    allocate channel c1 type disk;"
    backup"
    incremental level 1 cumulative tag = $BTAG"
    format '${BKP_LOCATION}/${LType}_%d_set%s_piece%p_%T_%U.bkp'"
    (database include current controlfile tag $CTAG) ;"
    sql 'alter system archive log current';"
    sql 'alter system archive log current';"
    backup archivelog from sequence ${CSEQ} tag $ATAG"
    format '${BKP_LOCATION}/${LType}_Arch_%d_set%s_piece%p_%T_%U.bkp';"
    release channel c1;"
    exit;"
    In the above snippet, the variables are substituted for within a shell script and then put into a command file for RMAN. I am a novice in the backup and recovery. I got above piece of code from someone working on RMAN and built my automation logic around it.
    The script works fine and I am trying to build to script level recovery feature around it. My question is:
    -- What happens if I invoke the script, the backup session starts and then there is abrupt termination of the RMAN session either because of losing the db connection or receiving an interrupt signal or a kill signal or some other weird reason.
    -- What if I re-invoke my script? Will it start from the point where it was stopped earlier or would it start from the point where we had last successful Level 1 backup completed?
    Thanks in Advance.

    Hi user781131,
    What happens if I invoke the script, the backup session starts and then there is abrupt termination of the RMAN session either because of losing the db
    connection or receiving an interrupt signal or a kill signal or some other weird reason?The backup set which rman was creating is not commited due to the abnormal termination but all succesfull backup sets can be used.
    What if I re-invoke my script? Will it start from the point where it was stopped earlier or would it start from the point where we had last successful Level 1 backup
    completed?In your backup script you do not use the < NOT BACKED UP SINCE TIME > clause so it will again do a level 1 backup off all datafiles.
    See:
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14194/rcmsynta009.htm#i1017236
    This option is a convenient way to back up files that were not backed up during a previous failed backup. For example, you back up the database, but the instance fails halfway through. You can restart the backup with the NOT BACKED UP SINCE TIME clause and avoid backing up those files that you already backed up. If AS BACKUPSET is set, then this feature is only useful if RMAN generates multiple backup sets during the backup.
    Regards,
    Tycho
    Edited by: tychos on 28-jan-2010 15:21

  • Labview 2010 installation fails

    Hi,
    I am trying to install LV2010 but all my attempts have failed so far. I installed it -> reboot -> the error message came "The installation of this application may be corrupt" [or something very similar]. I couldn't even run the License manager or any sort of NI softwares because the same error message popped up. Then I deleted the complete National Instruments folder from the Program Files, stopped all NI services in the Control Panel - Administration tools and rebooted the computer. 
    After all that I tried to reinstall LV2010 but I got the error message during the installation that at first "Labview 2010 must be installed" [or something very similar]. At one software component the installer told me that "Labview 8.6 must be installed"...
    Does somebody have an idea how to proceed?
    The OS is Vista.
    Thanks,
    Krivan

    Hi Krivan,
    It sounds like you need to clean up your registry.
    Give this link a lookover. If it doesn't help please post back.
    http://digital.ni.com/public.nsf/allkb/8703592D07C91AD586256B44000248C6?OpenDocument
    Best Regards,
    Chris
    National Instruments - Tech Support

  • Labview freezes during installation

    I have an enduser that I am setting up a repurprosed computer.  The computer was originally used by a summer marketing intern so there was never any NI software.  I was setting it up, and installed 8.6 by accident as the engineer then instructed me he preferred 2010 sp1.  I ran uninstall from the CLI as the GUI didnt have a way I found to uninstall it completely with one swoop.
    Yesterday it froze during the drivers disc, but now, I redid it after the uninstall and now it froze on the disc two - product 14 of 16: Currently installing Compilation Tools for Virtex-II FPGA Devices.  It has been sititng like this for the past hour. 
    The end user does have Xilinx Webpack previously installed, v.14. 
    Office 2007.
    Lotus Notes 8.5.3
    Firefox
    Windows 7 x64
    I am using the Labview 2010 SP1 Platform DVD set
    Any advice is greatly appreciated.
    Thanks and regards

    Exactly what happens when it "freezes"? Or, how do you know it freezes?
    If the rest of the code takes negligible time to execute, the 250 ms Wait in the last frame of the innermost sequence structrure will require >182 seconds to complete the nested for loops.  There are no indicators in those loops, so it would not be obvious whether the program was still running normally or not during those 3 minutes.
    Try putting indicators on the "i" terminals of the for loops. That will tell you whether the loops are executing, and when it freezez, you will be able to see how many iterations have completed.  Also put error indicators inside the loop so that you can see if any errors are reported. Unfortunately the Velmex driver does not report errors.
    Highlight Execution is useful for finding problems in code. But if the freeze occurs after several hundred iterations of the inner loop, you will grow old waiting to see what happens. A combination of Breakpoints and Highlight Execution is more versatile for troubleshooting loops.
    Sequence structures are almost never the appropriate choice for well written LabVIEW code. I would probably create several subVIs wrapping around the Velmex driver, with each subVI perfoming one task. Include error in and error out terminals (even if the Velmex driver does not return errors for most tasks) so that you can use dataflow for controlling the order of execution.
    Lynn

  • When I try to install the latest version (10.5) of iTunes, the following message appears: "There was a problem with this Windows Installer package. A program running during installation is terminated unexpectedly." Is there somebody who can help me?thanks

    When I try to install the latest version (10.5) of iTunes, the following message appears: "There was a problem with this Windows Installer package. A program running during installation is terminated unexpectedly." Is there somebody who can help me?thanks

    I used this site and it fixed my problems. Hoping it will help with yours too
    http://support.microsoft.com/mats/Program_Install_and_Uninstall

  • LabVIEW 2010 only installs if DVD drive is D:

    My DVD drive letter was F or G and the installer for the LabVIEW 2010 Developer Suite would not run properly.  I believe the error was that a file was missing. I decided to try and make the drive D: and it worked after that.
    Just though others should know.
    Chris Megdanoff

    LV 2010 was missing from the distribution I was using.  After downloading the missing piece, install from F: went fine.

  • The Add-on installation terminated during phase DDIC_ACTIVATION

    Hi
    We have ECC 6.0 sr3 on windows 2003 with db2 9.1 database.
    I am upgrading to ehp3 .
    I am getting this error
    The Add-on installation terminated during phase DDIC_ACTIVATION
    I checked the logs it is shwoing these 2 tables.
    Table FAGL_ACTIVEC was activated (error in the dependencies)
    View V_FAGL_ACTIVEC_2 could not be activated
    please give me some light on this
    thanks

    thanks for reply
    this is 64 bit system
    view i checked it is active but the tavle is partially active
    if  itry to activate that it is giving me so many errors so  it is not allowing me to activate.
    please help me
    thanks

  • LabVIEW 2010 App Builder/Installer- Target OS Options

    I will shortly be migrating from LV8.6.1 Devloper Suite in Win XP 32 bit to 2010 running in Win7 64 bit.
    Does the applicationbuilder and installer have the option to deploy Win XP 32 bit applications along with the corresponding run time engine?
    Thanks
    -AK2DM
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    "It’s the questions that drive us.”
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    Solved!
    Go to Solution.

    Hmmm, do you have a time machine?
    LabVIEW 2011 is not released yet. You'll have to wait until August for that.
    There is no specific Windows XP selection in the setup section of the Application Builder. It will simply create an installer for whatever Windows platform you are running at that moment. So if you run LabVIEW 32 Bit it will create a LabVIEW 32 Bit application and installer and if you run LabVIEW 64 Bit it will create an according application and installer. Needless to say that 64 Bit application and installer can only run on a 64 Bit system, while you can install the 32 bit application on either system.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Problems with Installer LabVIEW 2010 SP1

    Hi,
    I am trying to build an installer for an .exe using the project tool.  I can build the .exe, but I get the following error message when I try to build the installer:
    CDK_Build_Invoke.vi.ProxyCaller >> CDK_Build_Invoke.vi >> CDK_Engine_Main.vi >> IB_MSI.lvclass:Build.vi >> IB_MSI.lvclass:Engine_Build.vi >> NI_MDF.lvlib:MDFBuildDist_Build.vi
    Loading product deployment informationAdding files to installerDone adding filesPreparing to build deploymentCopying products from distributionsCopying distribution 'NI-Serial 3.7' from: C:\National Instruments Downloads\NI-Serial\3.7.0\ to: D:\workspace\swarm\trunk\LabVIEW\builds\SWARM Analysis Viewer v1.0.1\SWARM Analysis Viewer v1.0.1 Application Installer\Copying distribution 'sapphire_sw_packet_reader' from: D:\workspace\Sapphire GSE\LabView\LabVIEW 2009\source\builds\sapphire_sw_packet_reader\Sapphire Sub Window Packet Reader Installer\Volume\ to: D:\workspace\swarm\trunk\LabVIEW\builds\SWARM Analysis Viewer v1.0.1\SWARM Analysis Viewer v1.0.1 Application Installer\Building deploymentCopying setup filesSetting merged database informationSetting product informationSetting developer part informationStarting final buildValidating... ***************** Error: An internal tool or library returned an error. (Error code -21)Error MessagesInput directory 'C:\National Instruments Downloads\NI-Serial\3.7.0\Products\MDFSupport\MDF' not found for part 'MDFSupport.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\MDF Support {1814BD68-741C-429B-9EA7-C6D1385777C8}.xml'.Input directory 'C:\National Instruments Downloads\NI-Serial\3.7.0\Products\MDFSupport\MDF' not found for part 'EulaDepot.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\MDF Support {1814BD68-741C-429B-9EA7-C6D1385777C8}.xml'.Input directory 'D:\workspace\Sapphire GSE\LabView\LabVIEW 2009\source\builds\sapphire_sw_packet_reader\Sapphire Sub Window Packet Reader Installer\Volume\Products\LabVIEW_Web_Server_RTE_2010\LVRTEWebServer' not found for part 'NIWebServer_LVRTE.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\NI LabVIEW 2010 Run-Time Engine Web Server {DB68B420-5382-48EE-9A2A-CB984FEBB192}.xml'.Input directory 'D:\workspace\Sapphire GSE\LabView\LabVIEW 2009\source\builds\sapphire_sw_packet_reader\Sapphire Sub Window Packet Reader Installer\Volume\Products\LabVIEW_RT_NBFIFO_2010\LVRT_NBFifo' not found for part 'LVRT_NBFifo_2010.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\NI LabVIEW 2010 Real-Time NBFifo {2BC9B2CE-D569-4ADC-A8A0-170F2FD57139}.xml'.Input directory 'D:\workspace\Sapphire GSE\LabView\LabVIEW 2009\source\builds\sapphire_sw_packet_reader\Sapphire Sub Window Packet Reader Installer\Volume\Products\LabVIEW_SysStatePublisher_2010' not found for part 'NI_SysStatePub.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\NI System State Publisher {19F59734-0740-49E6-818D-53C1CA6B4ABE}.xml'.Input directory 'D:\workspace\Sapphire GSE\LabView\LabVIEW 2009\source\builds\sapphire_sw_packet_reader\Sapphire Sub Window Packet Reader Installer\Volume\Products\LabVIEW_SysStatePublisher_2010' not found for part 'NI_SysStatePub64.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\NI System State Publisher {19F59734-0740-49E6-818D-53C1CA6B4ABE}.xml'.
    ***************** Error Details:Error in MDF API function: _MDFBuildDist_BuildError List.\InputParser.cpp(255): IInstallerError 120Input directory 'C:\National Instruments Downloads\NI-Serial\3.7.0\Products\MDFSupport\MDF' not found for part 'MDFSupport.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\MDF Support {1814BD68-741C-429B-9EA7-C6D1385777C8}.xml'.While validating input parts.
    .\InputParser.cpp(255): IInstallerError 120Input directory 'C:\National Instruments Downloads\NI-Serial\3.7.0\Products\MDFSupport\MDF' not found for part 'EulaDepot.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\MDF Support {1814BD68-741C-429B-9EA7-C6D1385777C8}.xml'.While validating input parts.
    .\InputParser.cpp(255): IInstallerError 120Input directory 'D:\workspace\Sapphire GSE\LabView\LabVIEW 2009\source\builds\sapphire_sw_packet_reader\Sapphire Sub Window Packet Reader Installer\Volume\Products\LabVIEW_Web_Server_RTE_2010\LVRTEWebServer' not found for part 'NIWebServer_LVRTE.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\NI LabVIEW 2010 Run-Time Engine Web Server {DB68B420-5382-48EE-9A2A-CB984FEBB192}.xml'.While validating input parts.
    .\InputParser.cpp(255): IInstallerError 120Input directory 'D:\workspace\Sapphire GSE\LabView\LabVIEW 2009\source\builds\sapphire_sw_packet_reader\Sapphire Sub Window Packet Reader Installer\Volume\Products\LabVIEW_RT_NBFIFO_2010\LVRT_NBFifo' not found for part 'LVRT_NBFifo_2010.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\NI LabVIEW 2010 Real-Time NBFifo {2BC9B2CE-D569-4ADC-A8A0-170F2FD57139}.xml'.While validating input parts.
    .\InputParser.cpp(255): IInstallerError 120Input directory 'D:\workspace\Sapphire GSE\LabView\LabVIEW 2009\source\builds\sapphire_sw_packet_reader\Sapphire Sub Window Packet Reader Installer\Volume\Products\LabVIEW_SysStatePublisher_2010' not found for part 'NI_SysStatePub.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\NI System State Publisher {19F59734-0740-49E6-818D-53C1CA6B4ABE}.xml'.While validating input parts.
    .\InputParser.cpp(255): IInstallerError 120Input directory 'D:\workspace\Sapphire GSE\LabView\LabVIEW 2009\source\builds\sapphire_sw_packet_reader\Sapphire Sub Window Packet Reader Installer\Volume\Products\LabVIEW_SysStatePublisher_2010' not found for part 'NI_SysStatePub64.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\NI System State Publisher {19F59734-0740-49E6-818D-53C1CA6B4ABE}.xml'.While validating input parts.
    *** End Error Report************** Done building deployment
    Any ideas?
    Thanks.
    Bob

    CDK_Build_Invoke.vi.ProxyCaller >> CDK_Build_Invoke.vi >> CDK_Engine_Main.vi >> IB_MSI.lvclass:Build.vi >> IB_MSI.lvclass:Engine_Build.vi >> NI_MDF.lvlib:MDFBuildDist_Build.vi Loading product deployment information Adding files to installer Done adding files Preparing to build deployment Copying products from distributions Building deployment Copying setup files Setting merged database information Setting product information Setting developer part information Starting final build Validating... Copying files... Updating files... Creating merged database... ************** *** Error: Windows SDK function returned an error. (Error code -12) ************** *** Error Details: Error in MDF API function: _MDFBuildDist_Build ERROR: Caught Windows Error: The operation completed successfully. Unable to CreateFile for MSI ReadStream target file *** End Error Report ************** Done building deployment
    I have same errors, plz see above, can anyone help?
    MJ

  • Facing memory error during shifting from 3d stem graph to 3d surface graph in labview 2010

    hello all,
    earlier I was using 3D Stem graph in labview 2010. Now we want to move to Surface plot for same data.when i am trying surface graph it shows memory error.
    I have  10240 data.
    I was using vector method in stem graph so now for Surface graph i have thought that i have to make matrics of 10240x10240 and its diagonal elements should be my Z co0ordiants.
    plz help me out here.
    thanks & regards, 

    hello mikeporter,
    thanks for reply.I am attaching my Vi. It has some error also.plz look into it.
    X and Y are my co-ordinates pairs.I will be having values for these and have to update for same.
    Attachments:
    Untitled 2_surface.vi ‏184 KB

  • Labview 2010 run-time engine silent install

    I am having trouble with installing the run-time engine for LabVIEW 2010 with the silent option.
    I am using the minimum version of the run-time engine.
    Before I used the LV7 run-time engine. Then I could install it silently using LVRunTimeEng.exe /qb!
    In LabVIEW 2010 the run-time engine is no longer a single file but a directory that contains the installation files. There are two files that can be used to launch the installer Setup.exe and LV2010runtime.msi.
    Setup.exe does not seem to accept any command-line arguments. LV2010runtime.msi however accepts the command-line arguments and can be installed silently.
    Now my problem is that I am building a windows installer using a third party application and it is only possible to launch exe files after the installation completes. Before I could launch the LVRunTimeEng.exe /qb! to install the labview 7 run-time engine but now when I have upgraded to labview 2010 I cannot do the same for Setup.exe.
    My question is if it is possible to use the Setup.exe file to install the Labview 2010 run-time engine (minumum) silently?

    Setup.exe runs a number of other .exe files during its execution.  This article looks like it will allow you to run setup.exe silently by supressing all messages and windows:
    http://digital.ni.com/public.nsf/allkb/878FC4C374013ADF8625733D00688F67

  • Error of LabView 2010 sp1 installed on win7 64bit

    I installed LabView 2010 sp1 in a brandnew machine with 64bit Windows7.
    During the process of initialize LabView, an error message coms out.
    Could anyone help to solve this problem?
    Thank you so much!
    Attachments:
    Error.png ‏45 KB

    That appears to be a problem with your .NET installation, not LabVIEW. I'd suggest repairing or reinstalling your .NET framework.

  • Re: Regarding abrupt exit during Updation ofworkspace

    On Fri, 12 Sep 1997 15:39:37 +0530, G. Ramesh Kumar Reddy wrote:
    Hi,
    Could any one diagonise the problem reported. A snapshot of the error
    message displayed has been enclosed. I am unable to update my workspace. An
    early reply to the effect is appreciated.
    Thanx
    ERROR: TMgr.RunThread: task wsmgr.display terminated -escaped exception:
    FATAL ERROR: System segmentation/access violation caught.
    Class: qqos_SystemException
    Error #: [101, 321]
    Detected at: qqos_MainExFilter at 1
    Last TOOL statement: method wsmgr.compileAllUnconditionally
    Error Time: Fri Sep 12 15:36:01
    Exception occurred (locally) on partition "Forte_cl0_Client", (partitionId
    = 9BF77B64-0A62-11D1-BD48-8BB2B251AA77:0x5d3:0x1, taskId =
    [9BF77B64-0A62-11D1-BD48-8BB2B251AA77:0x5d3:0x1.8]) in application
    "Forte_cl0", pid 176 on node GRKR in environment centrale.I've seen this problem happen before, once when attempting to update a
    workspace and several times when trying to force a compile of all
    projects in the workspace (selecting "Utilities / Force Compile / All
    Projects" from the menus). I don't know what causes it, but what has
    always worked for me is to select each user project one at a time and
    force a compile on that project alone ("Utilities / Force Compile /
    Selected Project"). Once you've done this on all your projects, the
    update workspace or the forced compile of all projects should be OK
    again.
    Hope this helps.
    Dale V. Georg
    Indus Consultancy Services
    [email protected]
    Dale V. Georg
    Indus Consultancy Services
    [email protected]

    Hi user781131,
    What happens if I invoke the script, the backup session starts and then there is abrupt termination of the RMAN session either because of losing the db
    connection or receiving an interrupt signal or a kill signal or some other weird reason?The backup set which rman was creating is not commited due to the abnormal termination but all succesfull backup sets can be used.
    What if I re-invoke my script? Will it start from the point where it was stopped earlier or would it start from the point where we had last successful Level 1 backup
    completed?In your backup script you do not use the < NOT BACKED UP SINCE TIME > clause so it will again do a level 1 backup off all datafiles.
    See:
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14194/rcmsynta009.htm#i1017236
    This option is a convenient way to back up files that were not backed up during a previous failed backup. For example, you back up the database, but the instance fails halfway through. You can restart the backup with the NOT BACKED UP SINCE TIME clause and avoid backing up those files that you already backed up. If AS BACKUPSET is set, then this feature is only useful if RMAN generates multiple backup sets during the backup.
    Regards,
    Tycho
    Edited by: tychos on 28-jan-2010 15:21

  • Application crashes in Windows 7 64bit made in Labview 2010 sp1 f2 with Fault module name%3A lvrt.dll%2C version 10.0.0.4033 and exception code c0000005

    I build an application exe and then its installer along with run time environment.
    The installers instals the application correctly but when I try to execute the application, I get an error that application has crashed and Windows must close it down or search for solutions online with this additional information for the crash. 
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: AGMS.exe
    Application Version: 1.3.0.0
    Application Timestamp: 4c24e8f5
    Fault Module Name: lvrt.dll
    Fault Module Version: 10.0.0.4033
    Fault Module Timestamp: 4c9273f4
    Exception Code: c0000005
    Exception Offset: 00005310
    OS Version: 6.1.7601.2.1.0.256.1
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
    C:\Windows\system32\en-US\erofflps.txt
    I am using labview 2010 sp1 32 bit on a 64-bit machine, with the following specs
    Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.130318-1533)
    Language: English (Regional Setting: English)
    System Manufacturer: Dell Inc.
    System Model: Dell System XPS L502X
    BIOS: Default System BIOS
    Processor: Intel(R) Core(TM) i7-2630QM CPU @ 2.00GHz (8 CPUs), ~2.0GHz
    Memory: 8192MB RAM
    Available OS Memory: 8106MB RAM
    Page File: 3457MB used, 12753MB available
    Windows Dir: C:\Windows
    DirectX Version: DirectX 11
    DX Setup Parameters: Not found
    User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
    DxDiag Version: 6.01.7601.17514 32bit Unicode
    The exe /application runs fine on my PC but when I try to run it on another PC it crashes. The other PC has similar specs as given below
    Operating System: Windows 7 Ultimate 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.140303-2144)
    Language: English (Regional Setting: English)
    System Manufacturer: LENOVO
    System Model: HuronRiver Platform
    BIOS: Default System BIOS
    Processor: Intel(R) Core(TM) i3-2330M CPU @ 2.20GHz (4 CPUs), ~2.2GHz
    Memory: 4096MB RAM
    Available OS Memory: 4010MB RAM
    Page File: 1359MB used, 6658MB available
    Windows Dir: C:\Windows
    DirectX Version: DirectX 11
    DX Setup Parameters: Not found
    User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
    DxDiag Version: 6.01.7601.17514 32bit Unicode
    I tried another machine, 64 bit of course, as I want to deploy my application on a 64bit PC, but still got the same problem.
    This other machine was from HP, iCore 3 (4 CPUs) 2.2GHz, 4GB RAM and running Windows Professional 64 bit.
    Now as I see it, it could be a Run-time environment mis-match error.
    For this I tried installing a 64 bit LVRTE from NI, but still no sucess.
    I checked DEP, for all 3 PCs and it was set to the following
    Turn on DEP for essential Windows programs and services only (first option).
    I am confused. I can not find a solution for this and it is really frustrating.

    But I am assuming that when I make the installer, the 32-bit Run Time Engine is appened with the installer, as show below
    Since from the picture you can see its including the support installers from '\Program Files (x86)\'
    The application runs queries to fetch data from database in SQL server 2008, and for that I am using a Microsoft SQL Native Client 2008 R2 64 bit ( this is the only version that installs on either PC, even the one on which I developed my LV Application).
    I am not using any driver, only toolkits for reports - and for that I un-checked the "Remove unused polymorphic VI instances" when making the executable, otherwise LV throws up an exception that share variable are not being included.
    Yes I did reboot every time after I ran the installation.
    Still getting the same error.

Maybe you are looking for

  • Calendar, week view, invalid translation in polish language

    In Calendar's weekend view in polish language I see swedish (like country Sveden) translation with strange for me day names and letters symbols. Do you know this problem?

  • How can I see ALL TRACKS by a particular artist?

    When I do a search in iTunes for a band that has a large catalogue (e.g. Pearl Jam or U2) I only get about 150 results. Now, for Pearl Jam I know there are more songs. How can I see a bands' ENTIRE catalogue of songs without having to click on each a

  • How to read the extension .RNO files.

    Guys.. We are implementing B2B scenario , We are getting .RNO file with Rossettanet, Preamble, ServiceContent, OrderCreate, and DigitalSignature  tags in it. Once XI got .RNO file, XI needs to map with ORDERS05 and send to R/3. Can any one explain me

  • Unix command problem

    Sometimes I'll use the 'bg' command to run a process in the background so I can do other tasks in the same terminal window. For some reason, I still get the output of the process even though I said BG, not FG (foreground, of course). My roomate runs

  • While database startup,getting this error

    hi guru's yesterday i got this error and i got solution also,again i am getting after restarting my machine. SQL> alter database open; alter database open ERROR at line 1: ORA-16014: log 2 sequence# 573 not archived, no available destinations ORA-003