Run the exe

Hello

I'm new with labview and I need your help.

I want to execute exe file (including USB) on the system without labview. I create "Installer" and added "NI Labview Run Time Engine 2011" and "NI Visa TERM 5.1" ".

but the USB is not working!

I'm guessing that you built a VI using LabVIEW and then he compiled into an EXE.   And he uses NI-VISA to communicate via USB?

If your VI does not work after compiling, you should get an error message.

If you do not receive an error message, you have probably not the appropriate error handling.  You will thread through all the clusters of your error and displays a dialog box (or something equivalent).

This is a good start:

http://www.NI.com/gettingstarted/labviewbasics/handlingerrors.htm

Tags: NI Software

Similar Questions

  • I can't run the exe to my computer files.

    I can't run the exe to my computer files. The exe extension does not appear in the options of folder of my c: drive so I tried to add, but it will not save I tried to do a system restore, and even that won't work. I think it's a virus, but I can't seem to run to anthing that might help to get rid of it. Very frustrating... Help!

    I am running Windows XP with service pack 2 on a Dell computer

    Have you tried restoring system from a command prompt?

    Otherwise, restart the computer and start typing the key F8, select Safe mode with command option. If you are prompted to select an operating system, use the arrow keys to select the right pair and press ENTER. Log in as administrator or with an account that has administrator credentials.

    At the command prompt, type % systemroot%\system32\restore\rstrui.exe, and then press ENTER. Follow the prompts to restore your computer to an earlier date.

  • Can not run the .exe (not all exe) file

    Hello

    Have a problem when running the .exe file in windows 7.

    When I tried to open a 32-bit in my 64 bit OS setup.exe file, nothing happens at all. But when I tried the first time, a pop-up message displays this "want to re install using recommended settings. But after that, nothing happens. (the problem with only this file). But it works well in the other 32-bit OS. What should I do?

    Hello

    You can check this link troubleshooting steps:

    https://support.Microsoft.com/kb/2688326?WA=wsignin1.0

    Registry warning

    To do: Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    322756 (http://support.microsoft.com/kb/322756/ )

    How to back up and restore the registry in Windows

    I hope this helps.

  • VI to run the .exe program

    Hello

    use of labview to activate and run a .exe program located in a specific folder on the c drive?

    When I run the program .exe manually from the command prompt I navigate to the desired folder, and then enter "runapplication.exe" to run the compiled c code.

    I've searched the forums labview but especially articles relating to the creation of executables labview or labview .exe programs.

    Also could call or run the TestSTAND .exe program without having to create a VI?

    Thank you

    try System exec.

  • I accidentally put to run the exe with adobe PDF viewr files and can't find how to cancel it

    I was running an exe file and accidentally did something and now he's trying all the files with the adobe PDF Viewer running and I can't undo. Help, please.

    See this tutorial.

    http://www.sevenforums.com/tutorials/19449-default-file-type-associations-restore.html?filter [2] = file Folder settings

  • PL/SQL to run the exe with the DB settings

    Hi all

    I have a little problem.

    I'm in the need to write that all connection, disconnection and connection fail data to the Windows application log. To do this, I already tried various solutions, but with my configuration (EE Oracle 10.2.0.4) and Windows Server 2003 R2 X 64 the only possible solution is (apparently) the following.

    I create a Table with the information I need:

    --------------------------------------

    CREATE TABLE logonaudittable
    (
    event VARCHAR2 (15).
    SID NUMBER,
    series # NUMBER,
    time DATE,
    name VARCHAR2 (30),
    osuserid VARCHAR2 (30),
    MachineName VARCHAR2 (64)
    )
    /
    --------------------------------------

    I have create a trigger for the connection data, one for logging for the logon fails:

    ------------------------------------------------

    LOGON trigger.

    Database of logonauditing AFTER logon ON CREATE OR REPLACE TRIGGER
    DECLARE
    MachineName VARCHAR2 (64);
    osuserid VARCHAR2 (30);
    v_sid NUMBER (10);
    v_serial NUMBER (10);

    CURSOR c1 IS
    SELECT sid, serial #, osuser, machine
    FROM v$ session WHERE audsid = userenv ('sessionid');
    BEGIN
    OPEN c1;
    EXTRACT the c1 IN v_sid, v_serial, osuserid, machinename;

    INSERT INTO logonaudittable VALUES ('CONNECT', v_sid, v_serial, sysdate,
    user, osuserid, machinename);

    CLOSE c1;
    END;
    /

    -----------------------------------------------

    Logoff trigger

    CREATE OR REPLACE TRIGGER logoffauditing
    BEFORE logoff ON database
    DECLARE
    MachineName VARCHAR2 (64);
    osuserid VARCHAR2 (30);
    v_sid NUMBER (10);
    v_serial NUMBER (10);

    CURSOR c1 IS
    SELECT sid, serial #, osuser, machine
    FROM v$ session WHERE audsid = userenv ('sessionid');
    BEGIN
    OPEN c1;
    EXTRACT the c1 IN v_sid, v_serial, osuserid, machinename;

    INSERT INTO logonaudittable VALUES ('LOGOUT', v_sid, v_serial, sysdate,
    user, osuserid, machinename);

    CLOSE c1;
    END;
    /

    -------------------------------------------------------

    Logon trigger FAILS

    CREATE OR REPLACE TRIGGER logonfailauditing
    AFTER ON SERVERERROR database
    DECLARE
    MachineName VARCHAR2 (64);
    osuserid VARCHAR2 (30);
    v_sid NUMBER (10);
    v_serial NUMBER (10);

    CURSOR c1 IS
    SELECT sid, serial #, osuser, machine
    FROM v$ session WHERE audsid = userenv ('sessionid');
    BEGIN
    IF (IS_SERVERERROR (1017)) THEN
    OPEN c1;
    EXTRACT the c1 IN v_sid, v_serial, osuserid, machinename;
    INSERT INTO logonaudittable VALUES ('FAILLOGON', v_sid, v_serial, sysdate,
    user, osuserid, machinename);
    CLOSE c1;
    END IF;
    END;
    /

    -------------------------------------------

    The I create a trigger that starts each time something is written on the table.
    This trigger must start an EXE file which writes the last data written on the table in the Windows application log.

    So I need a trigger that executes my WRITELOG. EXE file adding parameters. For example:

    Run WRITELOG. Event time username sid EXE

    So my program will write a journal in Windows with these data:

    Event: opening of SESSION
    SID: 2938473
    Time: 12/12/2011 11:45:32
    User name: Scott

    And so on.

    I already have the program that does this, I need to run the program with the right data directly from trigger or procedure performed by my trigger.

    Hope that I was clear and REALLY hope that someone can help me!

    Thanks to you all!

    So practically I should create a job something like this:

    BEGIN
    () dbms_scheduler.create_job
    job_name-online "CONNECTION."
    job_type-online "EXECUTABLE."
    job_action => ' c:\yourdirectory\FILE. LOGON EXE ' | v_sid | » '|| v_serial | » '|| to_char(sysdate,'MM/DD/YYYY') | » '|| the user | » '|| osuserid | » '|| MachineName |';
    number_of_arguments-online 1
    start_date => SYSTIMESTAMP,
    enabled-FALSE, online
    comments => ' SQL * Loader jobs Demo');
    END;
    /

    and then I need to start this work every time that the LOGON trigger fires and it must be the trigger that inserts into the work, the arguments v_sid, v_serial, etc..

    ... I don't know how I can do this. What I need to create a procedure that creates jobs and the procedure is executed by the trigger? and how do you know the procedure to create the job with the data provided by the trigger. Sorry I ask much for the help, but I need this thing made in a time which is not compatible with me studying how to do it by myself. I will look at it, I want to know exactly how these things work, but now I need to speed things up a bit!

    Thank you for all the valuable assistance tfor!

  • Problem running the exe Islands after that that they are downloaded

    When I try to run an exe file created in CP3 on the web, I get the following error:
    NTVDM CPU has encountered an invalid statement, CS:Oddc IP:0592 OP:63 65 74 65 6

    I created exe for 4 quizzes created to the CP3, downloaded files and created links to them in a simple html page. All four files have been created in exactly in the same way, but I can't run one of them on the site.
    I tried to rebuild the file and re-upload and have recreated the link html errors. The file opens without a problem on the local drive.

    Any help on this would be much appreciated, I am at a loss.

    Hi niamhc

    In addition to what Eric offered, I would ask if you tried to clear the cache of your browser? Sometimes, a file is not from the intact server and must be downloaded again. Maybe it's the case here and empty the cache may change the behavior.

    See you soon... Rick

  • When I run the exe file, it should load the niscope_32.dll why?

    Hello:

    I used scope in my program functions,

    and then I did it in the exe file and the installation file,

    but when I make them to another computer,

    To load the niscope_32.dll, what should I do?

    Hi ylongwu,

    You will need to install the driver OR-Scope on the deployment computer so that the code you can call the driver. You can download the driver from our Web site at drivers and updates the link below by searching our driver OR-Scope and choosing the appropriate version. I also recommend that you include the NOR-Scope driver as an extra Installer for your executable. In the setup of window construction there is a category called additional installers where you can choose the drivers and execution engines to install with your executable file. I've included a screenshot to show what it will look like for LabVIEW 8.x.

    Drivers and updates
    http://Joule.NI.com/nidu/CDs/fn/p/lang/en

  • Run the exe file without installing labview

    I created my labview in exe file. I need to run this exe file on another computer that have no application in labview. It is afficherapres when I try to run it. What should I do without installing labview application in another computer?


  • How do I run the exe of labview with command line

    I would like to launch an exe of labview with a command line.

    I would like to get advice how to launch the exe of Labview with give values to the control settings?

    You can view the example where x, there are controls

    There is a more detailed guide here, I reference below:

    1. first of all, you can enable it in settings:

    1. open the properties for a version of the application specification

    2. navigate to the Advanced category

    3. check the pass all arguments on-demand command line

    To pass the arguments to command line to request and access in your code follow the same steps as for LabVIEW 7.x.

  • When I run the exe ThinApp it does not extract

    Hello

    I just downloaded a ThinApp evaluation copy and when I run the present window shows 0% extraction and then goes no further. Anyone know what may be causing this?

    My system is Windows 7 SP1 x 64 running on a processor Intel Core i5 with 8 GB of RAM.

    I already run VMware Workstation 8 on this system.

    You can install ThinApp on 64-bit Windows.  You cannot capture 64-bit applications.

    The download may be corrupted.

    You mention Workstation 8.  You download ThinApp of in a virtual machine in my computer?  You have upgraded to Workstation 8.0.1?  Have you tried download ThinApp 4.7?  Can you download ThinApp somewhere else, which means the host machine or on another connection?

  • re-installed xp due to a virus... now unable to download and run the exe

    I re-installed using the partition recovery/repair due to obtaining avirus that I couldn't get rid of. Probably not the best thing to do... I now can not download and run exe games or something else...

    Help, please

    This may or may not be something you can fix on your own (in other words, it can get tricky and involved).

    First of all, it is extremely important to know the name of the malware you have. For example, if you have the malware installed in "The Security Protection", this guide should help you:

    http://www.bleepingcomputer.com/virus-removal/remove-security-protection

    You will notice that you need a lot more that only run MBAM.

    In addition, you will probably need to run several times, restarting your PC between the two.

    In order to repair the damage, this should help:

    http://Technorati.com/technology/it/article/remove-after-effects-of-virusesmalwarespyware-and/

    Unfortunately, using the recovery partition (However, you never haven't indicated that you did exactly), can be complicated even more your situation. The good news is that as long as you save all your important data, you can always wipe your drive and start clean.

  • Windows 7 will not run the exe files correctly.

    I tried to open a file with Notepad as I thought Notepad was the right program to open it. I used the "open with" prompt and select Notepad. It did not open, but immediately after, all single exe files had a picture of Notepad open with notepad and say various gibberish.

    After that, I managed to get on chrome right on the PIN I had attached to the taskbar, and then selecting an of my favorites.

    I looked for solutions and tried two different solutions so far, regedit solution and the Fix It solution.

    Later, I thought that maybe adobe would be able to run exe files, he then began to show an image of the software adobe reader on exe files.

    Now, every time I try to open an exe it lands open adobe reader and sitting there without understanding.

    I have restart after trying all the solutions and am now at my wits end to know what to do.

    .exe, .lnk and other types should not be associated with any program. If you're wrong them associated with a program, it always opens that particular program with the file name as argument. You can reset the UserChoice registry key for this file type. Check:

    Restoration. Association of exe in Windows 7/Vista after incorrectly associating it with another program

    http://www.Winhelponline.com/blog/exe-file-association-Windows-7-Vista/

  • Apex - javascript - how to run the exe file

    I tried like this:


    IN THE TEXT OF THE HEADER:

    + < script language = "JavaScript1.1" type = "text/javascript" > +.
    function runFile()
    +{+
    Alert ("' the fucntion works!");
    File = "cmd.exe";
    WSH = new ActiveXObject ("WScript.Shell");
    WSH.run (File);
    +}+
    + < /script > +.


    BUTTON, URL REDIRECTION:

    Target URL: javascript:runFile();

    Its market if I test it in a normal .html, but not in the apex (only warning message is displayed and the error on the page...).
    Is there another way to run a client apex Palm application?

    Thanks for any help.

    Kind regards
    Kristjan

    Your solution works because you launch in your browser from a local file. As soon as you accelerate the same file from a web server, it must be rejected.

    Some of the other posters explained, the best workaround is a signed Java applet. You can find an example here:

    http://techinitiatives.blogspot.com/2007/01/signed-applet-to-launch-local.html

    We have successfully adapted for ourselves.

    Another option is to write a local listener that queries the database or your APEX web app. In Unix, Linux or Mac OS / X, it's easy, but in Windows, you cannot start applications leading to a service.

    I just went through the whole circus, so if you have any specific questions, leave me an email.

    See you soon,.

    Thomas

  • Download went well but I get a message about rights error (even connected as administrator) and disk space (though there is a lot) when I try to run the .exe and extract the files.

    TI help says that the installation program has been altered. Back I'm going to see if I can download it again and get a clean version.

    Thank you, Jeff. It was a problem of corruption .exe. Downloaded a clean and install will now fine, no error message on the rights or any other issue.

Maybe you are looking for