How to generate a LCVI application that is run by a user with administrator access

I want to build my app (LCVI 2009), so that no one can do it, unless they have administrator privileges.  Is this possible?

If it's any help, I have attached a document that explains how to do in Visual Studio.

Thank you.

Build > target settings

activate the option "Activate the manifest file" and look for the manifest file that you need.

PS: I do not remember if CVI 2009 this option because I use CVI 2010

Tags: NI Software

Similar Questions

  • Not sure how to display all the applications that I'm supposed to have with the creative cloud - constant spin in the window? [was: creative cloud]

    Trying to download my creative cloud, but get a constant rotation in the window. Not sure how to display all the applications that I'm supposed to have with the creative cloud?

    Please visit: App does not open. Wheel of progress turn continuously

    I hope this helps.

    Concerning

    Megha Rawat

  • How to remove a desktop application that is read as a drive

    We recently downloaded Skype and it left its Setup program on the screen. We cannot remove it without closing the application and when we re open the app it ceases to appear on the desktop screen. The application is read as a drive. How can we get rid of the application that is not Skype it resembles an apple with a Skype logo on it cd player

    Drag Skype to the Applications folder or another location directly on the internal disk and open it from there. As it is, Skype is launched from a dmg file, and it needs to be installed to run the application.

    (144597)

  • How to create a Java application that receives Messages from Web site.

    Hello

    I'm a c# developer, and I am new to programming Java with Eclipse.

    How can I create a simple application that listens on a port for incoming text Messages.

    In c#, I can do this in 5 minutes but in Java, well, I don't know.

    Help out me of the good people

    Research advance for your answers

    Hamid Weiss

    Here is an article that will help you:

    http://supportforums.BlackBerry.com/T5/Java-development/different-ways-to-listen-for-SMS-messages/TA...

    Unfortunately, this is the easy bit.  The hard bit is creating the application and have it run in a background Thread.

    For this, I recommend study you the samples provided and understand how they work.  The website is also a good source of material and explanations, as of course is this forum.

    You might find this useful too:

    http://supportforums.BlackBerry.com/T5/Java-development/tutorials-for-new-developers-part-1/m-p/1621...

    Good luck.

  • How to generate a sql script that is based on the structure of the table

    I want to generate a sql script that is based on a table structure.

    For example:

    If the table is:

    CID id c_value
    -----------------------------
    1 1 zz
    2 1 yy
    3 2 zz
    4 2 xx
    5 3 ss
    6 tt 3


    The expected output is:

    WITH
    CHILD_tab like)
    SELECT 1 cid, 1 id, 'zz' c_value of all the double union
    SELECT 2 cid, 1 id, 'yy' c_value of all the double union
    SELECT 3 cid, 2 id, 'zz' c_value of all the double union
    SELECT 4 cid, 2 id, 'xx' c_value of all the double union
    SELECT 5 cid, 3 id, 'ss' c_value of all the double union
    SELECT 6 cid, 3 id, 'tt' double c_value)


    11.1.0.7.0 release

    I do a lot of XML these days (maybe too well) so here is a solution involving XQuery.
    We pass a query string and it generates a CLOB containing the WITH clause:

    SELECT DBMS_XMLGEN.Convert(
    XMLQuery(
    q'[concat(
    "WITH t AS (
    ",
    string-join(
     for $i in /ROWSET/ROW
     return concat( " SELECT ",
                    string-join($i/*/concat("'",ora:replace(text(),"'","''"),"' ",local-name()),", "),
                    " FROM dual" ),
    " UNION ALL
    "
    ),
    "
    )")]'
    passing dbms_xmlgen.getXMLType('SELECT * FROM scott.emp')
    returning content
    ).getClobVal(), 1) AS WITH_CLAUSE
    FROM dual;
    
    WITH_CLAUSE
    --------------------------------------------------------------------------------
    WITH t AS (
     SELECT '7369' EMPNO, 'SMITH' ENAME, 'CLERK' JOB, '7902' MGR, '17/12/80' HIREDATE, '800' SAL, '20' DEPTNO FROM dual UNION ALL
     SELECT '7499' EMPNO, 'ALLEN' ENAME, 'SALESMAN' JOB, '7698' MGR, '20/02/81' HIREDATE, '1600' SAL, '300' COMM, '30' DEPTNO FROM dual UNION ALL
     SELECT '7521' EMPNO, 'WARD' ENAME, 'SALESMAN' JOB, '7698' MGR, '22/02/81' HIREDATE, '1250' SAL, '500' COMM, '30' DEPTNO FROM dual UNION ALL
     SELECT '7566' EMPNO, 'JONES' ENAME, 'MANAGER' JOB, '7839' MGR, '02/04/81' HIREDATE, '2975' SAL, '20' DEPTNO FROM dual UNION ALL
     SELECT '7654' EMPNO, 'MARTIN' ENAME, 'SALESMAN' JOB, '7698' MGR, '28/09/81' HIREDATE, '1250' SAL, '1400' COMM, '30' DEPTNO FROM dual UNION ALL
     SELECT '7698' EMPNO, 'BLAKE' ENAME, 'MANAGER' JOB, '7839' MGR, '01/05/81' HIREDATE, '2850' SAL, '30' DEPTNO FROM dual UNION ALL
     SELECT '7782' EMPNO, 'CLARK' ENAME, 'MANAGER' JOB, '7839' MGR, '09/06/81' HIREDATE, '2450' SAL, '10' DEPTNO FROM dual UNION ALL
     SELECT '7788' EMPNO, 'SCOTT' ENAME, 'ANALYST' JOB, '7566' MGR, '19/04/87' HIREDATE, '3000' SAL, '20' DEPTNO FROM dual UNION ALL
     SELECT '7839' EMPNO, 'KING' ENAME, 'PRESIDENT' JOB, '17/11/81' HIREDATE, '5000' SAL, '10' DEPTNO FROM dual UNION ALL
     SELECT '7844' EMPNO, 'TURNER' ENAME, 'SALESMAN' JOB, '7698' MGR, '08/09/81' HIREDATE, '1500' SAL, '0' COMM, '30' DEPTNO FROM dual UNION ALL
     SELECT '7876' EMPNO, 'ADAMS' ENAME, 'CLERK' JOB, '7788' MGR, '23/05/87' HIREDATE, '1100' SAL, '20' DEPTNO FROM dual UNION ALL
     SELECT '7900' EMPNO, 'JAMES' ENAME, 'CLERK' JOB, '7698' MGR, '03/12/81' HIREDATE, '950' SAL, '30' DEPTNO FROM dual UNION ALL
     SELECT '7902' EMPNO, 'FORD' ENAME, 'ANALYST' JOB, '7566' MGR, '03/12/81' HIREDATE, '3000' SAL, '20' DEPTNO FROM dual UNION ALL
     SELECT '7934' EMPNO, 'MILLER' ENAME, 'CLERK' JOB, '7782' MGR, '23/01/82' HIREDATE, '1300' SAL, '10' DEPTNO FROM dual
    )
    

    It may be useful for small datasets only because we reached quickly ORA-01706.

  • How to generate the ADF application projects

    I need to use ANT to deploy the EAR file on weblogic 10.3.5. I have download the source svn code. Then in the 11.1.1.4 Jdev, I create build.xml and build.properties for model and ViewController using Jdev.
    Then I remove all this request and re download the source code from SVN. After that, I add build.xml and build.properties to the model and ViewController. I use ant to build these 2 projects. Then, I use ojdeploy to create the EAR file.
    However, this EAR file is not correct and smaller than the EAR file created by Jdev.

    If I rebuild model and ViewController using Jdev, I can use ojdeploy to create the correct EAR file.

    < name of ora: parameter = value "nocompile" = "false" / > does not rebuild the 2 projects

    How to use ANT or ojdeploy to rebuild the ADF application?

    chk this
    http://vtkrishn.WordPress.com/2011/06/21/ojdeploy-how-to-include-taskflow-related-files-to-include/

    you delete the entry in the extract of ojdeploy

    http://one-size-doesn

  • How to close an unused application that says be used

    iPhotos has been open on my computer for months! He won't let me not to update or even shut down my computer. It says pictures are imported and there is nothing plugged! I don't know how to proceed. Help, please. Thanks in advance.

    Force the application to quit.

    Press command + option + ESC, choose iPhoto, then press on force quit.

  • How offer you a Mac application that is in the App Store, but not in iTunes?

    I found a Mac application, I want to buy a gift that is only sold on the App Store. Help Apple says we can do through the iTunes Store, but the only version for iOS, not for the Mac. I don't see anyway to gift an app on the App Store, and so for this Mac application, No. way to gift there.

    Any ideas?

    Yes, it has no function of gift in the Mac App Store. You can use the iTunes app to buy a gift certificate e-mail for an amount close to the price of the app. Or you can buy and send an iTunes Gift Card available in many stores the.

    By the end of 2012 mini Mac, OS X El Capitan 10.11.2; Apple Watch, 38 mm silver AL, Watch OS 2.1; iPad 2 & iPhone 6 + iOS 9.2 air

  • ThinApp an Applications that only run the machine it is built on

    So I try ThinApp our ERP "thick client" that developers and BA use quite strongly.  This application has a witch hunt, because it will only work from the netbios name of the machine on which it was initially installed.  Launch of the application of MSI after generating and returning on my clean-n-build machine works perfectly.  When I listen to or do a full installation for my clients to view, the survey application a security warning that is impassable basically says that the name of the computer you are trying to run on is not allowed.

    At some point during the installation process of this application, the netbios name of the machine are written to a database table and an encrypted file.

    I wonder if in all cases has advice for may "trick" the application into thinking it is launched the real clean-n-construction VM?  We are successfully running this application on Citrix/Terminal Server, so I know there is not no "concurrent user" problem with running the application in multiple sessions with the same machine name.

    Thank you

    Casey

    Try to change the computer name of the machine of the NBC to LOCALHOST, restart and then capture

  • What is 'Quickactionbox' appliction? He is constantly provide in the list of applications that are running in the Task Manager on several occasions.

    Here you can see the problem. What is this thing?

    Hi Benjamin,

    Thanks for posting your query on the Microsoft Community.

    According to the description of the problem some application named QuickActionBox is running and showing in the Task Manager.

    If you think that this application is not known to you and you think that's not important, then you can uninstall it in the list of programs. But before you uninstall this application, I recommend to create a system restore point and try to uninstall the application so that if this application is important, then you can come back to this point again.

    To create restore point, you can see the article mentioned below.

    A restore point is a representation of a stored state of your computer's system files. You can use a restore point to restore system files from your computer to an earlier point in time. Restore points are created automatically by the restore of the system each week and when System Restore detects the beginning of a change to your computer, for example when you install a program or a driver.

    Create a restore point

    You can uninstall a program from your computer if you no longer use, or if you want to free up space on your hard drive. You can use the programs and features to uninstall programs or to change the configuration of the program by adding or removing certain options.

    Uninstall or change a program

    Hope it would help. If problem persists always post back with the current state of your computer and the result of the proposed suggestion, we will be happy to help you.

    Kind regards

  • Dialog box of the file in the application that is running in window 7 shows all of the UNC path

    HELP PLZ!

    We use the file dialog box to open the folder of the disk file network hard. Window XP showed the path UNC path, but when we run our application (developed in vba) on window 7, full unc path has been established instead of only last name of the folder.
    example of... UNC path \\abcd\abb\abfolder in window XP file dialog shows "abfolder" and then if we see in looking in then hierarchical set of path can be seen
    but the file in window 7 dialog box shows all the way "\\abcd\abb\abfolde" as it is...
    Please suggest if some way where we can display in the file dialog box in the window 7 same folder in UNC path that showed before in XP.
    Hi Gary,

    Thanks for posting your question in the Microsoft Community forums.

    I see from the description of the problem, you have a problem with an application developed in Visual Basics for Applications running.

    The question you posted would be better suited in Visual Basics for Applications MSDN Forums. I would post the query in the link below.
    Hope this information helps you. If you need additional help or information on Windows, I'll be happy to help you. We, at tender Microsoft to excellence.
  • How to show the IOM application instance account password in the user interface

    Hello

    I would like to see IOM application instance account password.

    In OPAM, there is a "show password" button.

    Is it possible to do the same thing in IOM? If so, how?

    TIA

    Leo

    Customized using managed beans sound possible, you can try something similar to the example below:

    IOM Managed Bean example: password reset custom

    http://oraclestack.blogspot.in/2014/12/OIM-managed-bean-example-custom.html

    Or if its requirement quite normal for all users, it must be visible, then you can create a new field in your form to process and fill in the application form as pop prerequisite. But this is not recommended.

    ~ J

  • Test an application that uses acrobat to adobe pro with a trail version

    Hello

    I have a program that refers to Adobe Acrobat Pro.  Previously, we have been using Adobe Acrobat Pro version 8 and would like to upgrade to the latest version.  I downloaded a trial version of Adobe Acrobat Pro XI to test the program with, but I get an error when you try to create an adobe object.  The error that says it cannot create the object.  Doing some research I found that it is probably a result of me having an unregistered version of Adobe Acrobat Pro on my machine.  It is cancelled, since this is the trail version.

    My question is, am I able to test that the program works with the latest version of Adobe Acrobat Pro without having to buy first?  We would of course it works with the new version before you buy licenses for the version for our users.

    Thank you

    Aaron

    Your another program may need to be updated to a new version. There are changes to the way in which you call by Acrobat and Reader via IAC (Inter Application Communication) program so if you are a programmer, you may need to make some changes.  If you're not the programmer of the other application then as said previously he may need to be upgraded to a newer version as well.

  • How can I disable the "feature" that transforms a square into one with rounded corners, when I try to drag?

    Now, it is often very difficult to catch an object square and drag it without him convert to rounded corners - especially with small objects.

    No idea how to solve this problem?

    TIA

    View > hide the corner widget

  • Labview that is running on a computer without write access to the installation directory?

    Hello

    A client of ours wondered if we can run our Labview executable and runtime on their computer without having no write access to the installation directory?

    It is quite easy to change so that our program writes its log files to another drive on the network, but what the runtime engine and updates Live trying to download programs OR?

    Grateful for any comments.

    As far as I know the terms of access rights for the updates are the same for the basic facilities.

    However, given that your program is running on a factory floor, I recommend disabling updates. I don't think you want to come down because a computer does not have an assembly line update.

Maybe you are looking for

  • Why not my iPhone 6 s more synchronize with my iPad

    I've just updated from an iPhone 5 to 6 s more... my iphone 5 used to synchronize with the iPad, however, since I started to use the new phone today, it will not sync with my iPad! I tried icloud and all that good stuff, but it still does not work wh

  • FixIt MS will work on Windows XP?

    Original title: FixIt from Microsoft and Windows XP? FixIt MS will work on Windows XP?  It doesn't seem to work on my own.  Why not?

  • best way to connect two PC 2748 s?

    I just upgraded our office in two PC 2748 s (while still also using one of our PC 2324 devices) and I would like to know the best way to connect these three switches. At the present time, I have a cord Ethernet connecting each of the 2748 s via the 4

  • where should I create file?

    Hello my application must create a file at the beginning. I am way wondering - which should I use to create a file? No each device has a memory card. y at - it smth like 'C', for example: _fc = (FileConnection)Connector.Open ("C:\" + _fileName, Conne

  • How to remove files and previous sites

    I tried to twelve sites since abandoned for various reasons - mostly because I couldn't understand where I'm wrong.Is it possible that I can delete these and and fasteners of the files from my hard drive also the Dreamweaver welcome window listed und