Run a LabView 2012 executable without installing RTE.

I have a thumbdrive with a LabView executable that is ready to run.  I want to be able to run this executable on different PC's without having to install the Run Time Engine on each machine.  What dll do I need to have in the same directories as the executable so I can run the executable without actually installing the Run Time Engine.  Thanks in advance.
Sebastian

Like the others said, there's no official way of doing this.
That said, the answer to your actual question is "lvrt.dll" and some of the others in the same folder (I don't remember offhand which folder it was. Look for it yourself). Note that there are some caveats:
The last time I did something like this was around LV 7.0. I didn't check in later versions, but I seem to recall someone who usually knows what he's talking about saying that it doesn't work at some point after 8.0.
Even if it does still work, this will only support things which are in those DLLs and don't have any other dependencies. That means things like VISA, DAQmx, other drivers and possibly even some of the display elements which are based on MESA for rendering or on other external resources.
It obviously won't be supported in any way.
Try to take over the world!

Similar Messages

  • Run labview executable without installing

    Hi
    We need t run a LabVIEW executable without the need to install the runtime engine first.
    In fact we use a LabVIEW program to distribute LabVIEW within our company.
    We add our own library and a special license request form and make it possible to install a LabVIEW development environment
    with only the push of one button.
    In LV8.2 however this no longer works. First the runtime environment has to be installed before we can run our LabVIEW application.
    Previous LabVIEW versions worked OK.
    Are we missing an option in the installer somewhere or can somebody show the way to make this work again otherwise we have to keep 8.01 until infinity....
    greetings from the Netherlands

    Hi Albert,
    Long time no see... Perhaps at the user group meting okt. 5?
    We (Andre) did some experiments with this just last week. He copied everything from the normal installation directory (program files) runtime directory to a new directory on a clean PC. In the same directory he put an executable, and it did run properly (although I think he also copied the models directory to get proper control images).
    Only thing is that at the startup of the exe, we get a dialog "Installing...". Still working on that. This might even work from a CD...
    He made a big effort to remove all previous LabVIEW stuff, but to be honest, we didn't try it on a completelly "clean" system.
    Regards,
    Wiebe.
    "Albert Geven" <[email protected]> wrote in message news:[email protected]..
    Hi We need t run a LabVIEW executable without the need to install the runtime engine first.In fact we use a LabVIEW program to distribute LabVIEW within our company.We add our own library and a special license request form and make it possible to install a LabVIEW development environmentwith only the push of one button.In LV8.2 however this no longer works. First the runtime environment has to be installed before we can run our LabVIEW application.Previous LabVIEW versions worked OK.Are we missing an option in the installer somewhere or can somebody show the way to make this work again otherwise we have to keep 8.01 until infinity....

  • Missing vi.lib files in Run-Time LabVIEW 2012

    Hi
    I've got a problem executing VI's under RT in LabVIEW 2012.
    Our system consist of multiple independent modules which are opened and run from a Manager VI. VI paths to the modules are read from an .ini file by the Manager VI.
    We have build a single executable (RT Launcher) that takes the path of the Manager VI as argument (Attachment : RT Launcher.png).
    The RT Launcher is placed in the ..\National Instruments\LabVIEW 2012 folder as the LabVIEW.exe.
    The RT Launcher is called from the CLI.
    "C:\Program Files\National Instruments\LabVIEW 2012\RT Launcher.exe" "C:\Workspace\Labview\Manager.vi"
    This will run the Manager.vi in the RunTime Environment and the Manager.vi will open the .ini file and execute the Module VI's one by one.
    By calling the RT Launcher.exe from the same folder as the LabVIEW.exe, the search paths should be the same.
    The system worked fine in LabVIEW 2010.
    The Manager VI is opened with broken arrow and the errors indicate that vi.lib sub VIs are missing (attachment : Manager VI errors.png)
    I know there are issues regarding object cache and separated compiled code from LV2010 -> LV2011 -> LV2012, but simply can't figure out how to come around this problem.
    Can anyone explain the difference and how to solve the problem ?
    Thanks
    Regards Kahr
    Certified LabVIEW Architect
    CIM A/S
    Solved!
    Go to Solution.
    Attachments:
    RT Launcher.png ‏68 KB
    Manager VI errors.png ‏35 KB

    Hi Kahr.
    It sounds like you are making some dynamic calls to VI's, eg. by using 'Open VI Reference'. My answer is based on that assumption. 
    You are absolutely right. In LabVIEW2010 we introduced a function called 'Separating Compiled Code from VI'. At that time none of the VIs from VI.lib had that option enabled. In LabVIEW2011, many VI's in VI.lib have, by default, a separation of compiled code and VI. This option cannot be changed (greyed out) for these VI's as well. This feature was introduced in order to simplify source code control.
    Separating Compiled Code from VIs and Other File Types
    The drawback is, that it is no longer possible to call VI's dynamically from an application (executable), when this option in enabled, since the compiled code no longer exists. The method of calling a VI dynamically from an application has been (and still is) used to make some kind of a plug-and-play architecture, meaning we have one EXE-file that only gets distributed once and a set of subVI's that gets redistributed according to new versions (new features added to the subVI), meaning we can make changes in the subVI without having to redistribute the EXE-file.
    With the release of LabVIEW2011 and LabVIEW2012 we can no longer distribute VI's that uses functions from vi.lib, this also include DAQmx calls even though the DAQmx driver is installed.
    The simple explaining is, that it has never been intended that VI's got distributed. Eg, when Microsoft is making a new software update for Windows7, they don't send out the source code to all the users.
    The solution is therefore to wrap up the source code into 'something' that includes all the compiled files. In LabVIEW we do that in a couple of different ways.
    1) Include the VI's in the EXE-file.
    When building the application, we have the option to include files, that normally is not included in builds. If we call a SubVI dynamically this will not automatically be included! However, the drawback of this method is, that if you need to change  something in one of your SubVI's, you would need to build and distribute the entire application. Thereby, we are not making use of the plug-and-play architecture that we originally wanted. However, this method will fix the error.
    Error 1003 When Using VI Server in a LabVIEW Application
    2) Now, if we still want the plug-and-play architecture in LabVIEW2011+2012 (and this will properly be the same for the next many released of LabVIEW), this can still easily be achieved by making a Source Distribution. When we make a Source Distribution, we can include the VI's from VI.lib and thereby the compiled code. When using this method, two important things should be remembered:
    a) Make the files into a LLB file. This will pack all the VI's into one single file, that is easy to distribute.
    Go to Destinations ==> Destination Type ==> LLB.
    b) Make sure not to 'Exclude files from vi.lib', as this method will then simply not work.
    Go to Additional Exclusions ==> Remove checker mark in 'Exclude files from vi.lib'.
    How Can I Call a VI Dynamically from an Executable Without Including Those VIs in the Build?
    I have made a small example to demonstrate this:
    Example: Using vi.lib
    This example has two mainVIs and two EXE-applications. Build the two EXE-files, but do NOT build the source distribution yet.
    1) Main(IncludeSubInExE). This version has included the subVI in the build distribution for the EXE-file. When running this EXE everything works fine, even when calling the subVI dynamically. However, since the subVI is build into the exe, we would have to redistribute the exe for every new version of the subVI. This breaks the hole idea.
    2) Main. The subVI is no longer included in the build. When running and trying to call the subVI, you will get this error (on both your developer and run-time machine):
    Now, build the Source Distribution and run this EXE again. The exe is running perfectly with no errors.
    I hope this answers your question.
    Best Regards
    Alex E. Petersen
    Certified LabVIEW Developer (CLD)
    Application Engineer
    Image House PantoInspect
    Attachments:
    Using vi.lib.zip ‏83 KB

  • Running forms 6i on client without installed runtime !

    Dear proffesionals, what do you think about code below-we tried to enable our users to run applications developed in Forms 6i, without installed runtime on their machines. Is this solutions good, and why ? We installed forms6i runtime on the server, and make batch script (with code below), and make .exe file from that. Than we send link to users with locations of that .exe file? Is this way possible to run application through VPN ?
    Thanks in advance,
    Adnan
    Code:
    set ROOT_DIR=\\ip_address\
    set APLIK=\\ip_address\
    set ICONE=\\ip_address\
    set PROGRAM=Form.fmx
    set USER=username     
    set PASS=password
    set BAZA=database_name
    set path=%ROOT_DIR%;c:\dos;%PATH%
    set ORACLE_HOME=%ROOT_DIR%
    set path=%ORACLE_HOME%\BIN;%ROOT_DIR%;%PATH%;%ROOT_DIR%\BIN
    set FORMS60=%ORACLE_HOME%\FORMS60
    set FORMS60_PATH=%APLIK%
    set RW60=%ORACLE_HOME%\REPORT60
    set REPORTS60_PATH=%APLIK%
    set API=%ORACLE_HOME%\DBS
    set BROWSER60=%ORACLE_HOME%\BROWSER60
    set CA_GPREFS=%ORACLE_HOME%\
    set CA_UPREFS=%ORACLE_HOME%\
    set CORE40=%ORACLE_HOME%\CORE40
    set DE60=%ORACLE_HOME%\tools\common60
    set NET80=%ORACLE_HOME%\net80
    set ORA_NLS33=%ORACLE_HOME%\NLSRTL33\DATA
    set DEV2000_SCCONVERT=FALSE
    set DOC60=%ORACLE_HOME%\tools\doc60
    set GRAPHBMP60=%ORACLE_HOME%\graph60\gwiz_bmp
    set graphics60=%ORACLE_HOME%\graph60
    set graphogd60=%ORACLE_HOME%\graph60\gwiz_ogd
    set gsconnectdir=%ORACLE_HOME%\olap\ecf620
    set gsinstalldir=%ORACLE_HOME%\olap\ece620
    set gwizard60=%ORACLE_HOME%\graph60
    set mm60=%ORACLE_HOME%\tools\common60
    set nlsrtl33=%ORACLE_HOME%\nlsrtl33
    set ocl60=%ORACLE_HOME%\graph60
    set oin60=%ORACLE_HOME%\oin60
    set ora_nls33=%ORACLE_HOME%\nlsrtl33\data
    set oracle_jdk=%ORACLE_HOME%\jdk\
    set orainfonav_docpath=%ORACLE_HOME%\oin
    set otrace80=%ORACLE_HOME%\otrace80
    set plsql80=%ORACLE_HOME%\plsql80
    set pro80=%ORACLE_HOME%\pro80
    set qt_player=OMO
    set rdbms80=%ORACLE_HOME%\rdbms80
    set reports_builder=rwbld60.exe
    set reports_runtime=rwrun60.exe
    set reports60_classpath=%ORACLE_HOME%\jdk\lib\classes.zip;%ORACLE_HOME%\REPORT60\java\jars\myreports60.jar;%ORACLE_HOME%\REPORT60\java\jars\xmlparser.jar
    set reports60_express_ui=%ORACLE_HOME%\bin
    set reports60_jni_lib=%ORACLE_HOME%\jdk\bin\javai.dll
    set reports60_splash=TRUE
    set rw60=%ORACLE_HOME%\report60
    set shared_oracle_home=%ORACLE_HOME%
    set tk60=%ORACLE_HOME%\tools\common60
    set ui60=%ORACLE_HOME%\tools\common60
    set vgs60=%ORACLE_HOME%\tools\common60
    set UI_ICON=%ICONE%
    set NLS_LANG=CROATIAN_CROATIA.EE8MSWIN1250
    set NLS_DATE_FORMAT=DD.MM.RRRR
    set NLS_NUMERIC_CHARACTERS=,.
    start /separate /D%TEMP% ifrun60 module=%PROGRAM% userid=username/password@database
    echo off
    if not errorlevel 1 goto ok_2000
    CD %TEMP%
    start ifrun60 module=%PROGRAM% userid=%user%/%pass%@%baza%
    if not errorlevel 1 goto ok_9x
    goto error
    :ok_2000
    echo ---------------------
    echo Application started
    echo successfully
    echo at OS WIN2000...!
    echo ---------------------
    goto end
    :ok_9x
    cls
    echo ---------------------
    echo Application started
    echo successfully
    echo at OS WIN9x...!
    echo ---------------------
    goto end
    :error
    cls
    echo ---------------------
    echo There was some
    echo problems with starting
    echo this application...!
    echo ---------------------
    goto end
    :end

    In order to distribute a Forms 6i application to a client you really only have three (3) choices.
    1. Install the Forms Runtime on each PC (truely distributed application).
    2. Deploy the application using desktop virtualization (Citrix, etc). This option requires a Virtualization server.
    3. Web Deployed. (This requires the addition of an Application server and does require some type of installation on the client (the Oracle Jinitiator), but this can be automated with the Web Deployment.) Check out this link [Forms 6i Documenation|http://www.oracle.com/technology/documentation/6i_forms.html] and scroll to the bottom and view the "Oracle Forms Developer Release 6i: Deploying Forms Applications to the Web with Oracle Forms Server" document.
    Hope this helps.
    Craig...
    If a response is helpful or correct, please mark it accordingly

  • Can I run Skype through FireFox/Mozilla without installing skype on my laptop?

    My laptop is running Windows Vista Home premium (SP2) and the Windows Installer has failed thus I am unable to install or un-install applications like skye. As a result I am looking for a way to run skype while I am unable to install it normally. Is there a plugin or other add on that will meet my needs?

    It may be a good idea to fix the Windows installer so you won't run into further problems.
    To fix the problem first try to re-register the Windows installer service.
    To do this:
    * Type Windows+R to bring up the run box.
    * Open cmd by typing cmd' and press enter
    * In cmd type: msiexec /unregister
    * Then type msiexec /regserver
    * Type exit to exit cmd after that try to run the installer again.
    Let us know the results.

  • How to run unbuntu on my mac without installing as seperate os?

    I know VPC did it but outdated any other ideas?

    I use Virtual Box to run UBUNTU as well as several other LINUX flavors and of course an XP partition. Free, works great, frequent updates and performs great.

  • Is Labview 2012 run-time on TPC-2206?

    When I go to Uninstall programs on my TPC-2206 I see Labview Run-Time 2009, 2010 and 2011. Labview 2012 Run-Time does not show up in the list. When I download and install it, I still only see the above plus a generic National Instruments program. The new TPC-2206 touch panels we have show a generic National Instruments program in the program list, but I don't know how to find out if that is Labview 2012 Run-Time. I can't find anywhere on the NI website that lists what Run-Time software is already loaded on the Touch Panels.

    I did try running a Labview 2012 executable after I had put up the post. It did not work, so I knew that Labview 2012 Run-Time was not on it. I put Labview 2012 Run-Time on it, but afterwards when I looked in the Remove/Change programs list in the Control Panel, Labview 2012 Run-Time was not in the list of installed programs. There was a generic National Instruments program, but there was nothing identifying what NI program it was. This was the real problem, because all of the earlier versions of Labview Run-Time were clearly identified in the installed programs list and Labview 2012 Run-Time was not. There is no way to know if Labview 2012 Run-Time is installed except to try to run a Labview 2012 executable.

  • Installing both Vision Builder 2012 and LabView 2012 on same Computer

    am new to NI Vision Builder Automation Inspection 2012 (Which I am supposed to learn and use for part inspection) as well as LabView (Which I need not know at this time)
    When I was presented (to work with) a 1722 Camera and the computer, Labview 2012 was already installed but not Vision Builder.
    The IT folks installed the Vision builder without uninstalling LabView.
    I have my problems getting upto speed with my inspection work, but is any of it attributed to both systems being on the computer?
    Can I (Must I) uninstall LaView??
    Thanks

    LabVIEW and Vision Builder run fine on the same computer.  I have several versions of each on mine with no problems.
    Bruce
    Bruce Ammons
    Ammons Engineering

  • Run Form in HTTPS or SSL mode without installing Application Server

    Hi all,
    I have installed Oracle Database 10g and Oracle Developer suite 10g in my PC (Window XP). Now I want to implement SSL or running forms in HTTPS mode instead HTTP and I don't want to install Application server.
    Any workaround is there to run Forms in HTTPS mode without installing Application server.
    Thanks,
    Omer

    Performance issue? How old is your hardware? I am running OAS 10.1.2.3 on a Server 2003 VM which basically consumes 512MB RAM and ludicrous amounts of CPU/IO.
    In any case: as said if you want to test SSL in a real life scenario then enabling SSL in OC4J is not what you want to do. In production the configuration is completely different, as there you would configure Apache to run your forms via SSL.
    What comes to my mind would be to install Apache 1.3 (this would be the version OAS 10.1.2 uses), configure mod_oc4j there and configure it with SSL. On the other hand this also isn't the configuration you have in production so this also is not exacly what you want.
    If you want to verify if your forms application will run via SSL then most certainly it will run without changing your sources. The only things you might have to change would be if you do HTTP Requests from the database to your application server via utl_http or from the client to the application server via java beans or via the java importer.
    But for tests I'd strongly recommend doing it via an application server installation, and not via developer suite.
    cheers

  • Can multiple executables run on Labview RT?

    Can I execute processes on the Labview RT that are non-VI processes?  From what I understand, the Labview RT is tightly coupled with the Pharlap RTOS.  NI has tools to create an executable to run on Labview RT.  Can I run other executables created from other applications?  What if I want to run a Labview RT executable and a non-Labview RT executable on the Pharlap RTOS?  The PXI-8196 RT controller will have a FAT file system?  Can the PXI-8196 RT, with its Labview RT and Pharlap RTOS, initiate multiple executables?
    Wayne

    Hi Wayne,
    Chris' answer was spot-on.  To clarify the other points, the RT controller will require the FAT file system (FAT32 in the case of the 8196 RT), and you can only run one executable at a time.  From within this executable, you can call DLLs and other VI's, but calling an external executable will not work.  If you choose to create a DLL, I recommend using the DLL Checker 7.1.1 utility, which can be found in our KnowledeBase.  This will verify that the DLL does not make calls to functions or libraries not supported on the Pharlap OS, since some windows libraries and function calls are not available in RT.
    Cheers,
    Matt Pollock
    National Instruments

  • Labview 2012 Runtime Application Crash: Access Violation Error

    hi All,
    my rather large app that I been develping over teh last few years has recently been crashing.
    I do not know if it is since I began compiling it in LV2012 SP1 that the problem occurred or I have some programming error
    that I cannot track down.
    It use to run with uptimes over months, even with some memory leaks.
    If I monitor using Task Manager there is no decernable increase in memory usage.
    It crashes on two different systems - both running Windows XP.
    The developer version running in LabVIEW 2012 f5 ( Windows XP ) does not crash. Only the runtime version crashes.
    It also crashes either if the program sits idle for a few days - 5 or so ( memeory footprint stable ), or if it is used extensively to actively gather and control several instruements ( memory increase matches data size increase )
    It does call several external API via ActiveX to spawn off processes, however from the lvlog.txt it seems the crashing is a simple open file that uses the NI supplied String to Config.vi.
    I have double/triple check my code and I close any refernces open by the calling vi.
    I am sure how to read teh mini-dump files so if someone can look at these it would be apreciated
    thanks
    Michael
    Here are two crash logs:
    Attachments:
    fde86f7f-a024-417d-ac1c-d38b2e9a41e3.zip ‏61 KB
    4f75c413-793d-46db-b66c-889a2f2daf69.zip ‏59 KB
    00660fb7-749d-4af5-bcb1-ac5cad73a5cb.zip ‏56 KB

    Hi Michael,
    It's tough to tell what's going on, especially since it seems like you've really covered your bases!  I'm curious about the fact that you don't see the crashes in LabVIEW (LV), just in the Run-Time Engine (RTE).  Have you ever tried running it in LV for an extended period of time?
    Also, do you have any loops in your program?  Perhaps shrinking any waits that might be present and allowing your program to run faster would decrease the amount of time to see these errors from days to shorter.  
    In the future, when you get a dump file, submit it to our R&D department.  It then pops up on a website that allows me to read them.  I can also use win debug but that will take me a bit, so I'll have to get back to you on that.  
    Also, if you could take a picture of the error, that would help as well.
    Julian R.
    Applications Engineer
    National Instruments

  • How can I run a LabVIEW app as a service in 8.2

    I have need to run a LabVIEW created Executable as a Service using LabVIEW 8.2. I have heard 8.2 can host it but I cannot find any docs on this. Any help would be appreciated. SvcAny was not an option that worked.

    I would suggest trying to add the exe to the services under Control Panel >> Administrative Tools >> Services.  This should cause the exe to launch as a service.
    Brian R.
    District Sales Manager
    Washington DC
    National Instruments

  • Oracle pages on clients without installed any oracle package

    i use oracle 10g
    how can i run oracle pages on clients without installed any oracle package
    can i work this?

    ZaMaN wrote:
    I cannot understand you.
    what is this relationship mean?It means that in a 3-tier application, the only client to the database is the app server ... NOT the individual end user machines.

  • Running a labview installer without installing drivers

    Ouch. I have to install multiple LabView programs onto the same machine and they were all compiled with different versions. I don't have the luxury of rebuilding them. When I try installing some of them, the program won't let me install because newer drivers are already installed on the machine. Is there a way of running an installer to install the program without installing the drivers?
    Solved!
    Go to Solution.

    The folder where the installer was placed into should have a bunch of folder in the "bin" folder all starting with "p". These contain the various installers that are run. The actual installer for your executable should be in there somewhere, so you could try running it directly.

  • Run exe file without installing labview

    i created my labview into exe file. I need to run this exe file on another computer which have no labview application. There's anerror when i try to run it.What do i have to do without installing labview application into another computer?
    Solved!
    Go to Solution.

    As Freelance_LV already asks, there are possibly additional components you require for your EXE to run.
    The easiest thing to point out is required hardware devices and their drivers. If that is available (or not used), the EXE should run with the correct LV RTE (runtime engine). You can think of the LV RTE as of the .NET framework.
    Please note that most drivers and runtime engines from National Instruments are free of charge for deployment. But there are some runtime engines which are liable to costs.
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

Maybe you are looking for