Cvi 2012 install directory

Hi!
The building of a distribution is really easy with cvi2012. But there are some problems.
Here is my problem: the destination directory for my program is always ..\Install<ProjName>. The in the edit installer -> files tab specified directory is a different one. How can I change the directory???
Darius.

hi darius, 
i'm not shure if i understand your question right.I attached you two screenshots of the installer window.
In the files tab you can create the directory, you would like to have on the target pc. The section on top is your developement pc and you can choose which file you want to include in your insaller. The section below is the virtual target pc and you can decide the structure of the directory of your target. 
If you want to add a folder into your directory you can do a right click in the section of your target, see in picture 2
If I missunderstood your question, please add a screenshot and a detailed describtion.
Regards
Michael F.
Attachments:
Edit_Installer.PNG ‏59 KB
Edit_Installer_2.PNG ‏73 KB

Similar Messages

  • How to use CVI 2009 with CVI 2012 installed

    I have TestStand 2012 / CVI 2012 installed. 
    I need to also test using teststand 4.2.1 / CVI 2009.
    I installed teststand 4.2.1 / CVI 2009 and can activate teststand 4.2.1 but I cannot access CVI 2009. 
    Is there any way to have CVI2009/2012 both available on the same computer? 
    Is there a way to compile CVI 2012 to work with TestStand 4.2.1?

    Hi HMRJ,
    You can have multiple versions of CVI installed on the same computer. Can you explain in detail what you mean when you say that you cannot access CVI 2009? Do you mean that you can't open it or can't activate it?
    I am not sure I understand what you mean by compiling CVI 2012 to work with TestStand 4.2.1. You should be able to create a DLL from CVI 2012 and call this code module from TestStand. Are you receiving any errors when you try to do this?
    Regards,
    Anjelica W.
    National Instruments
    Applications Engineer

  • An error occured while creating a project Visual Studio 2010 & CVI 2012

    While creating a project from VS2010, with CVI 2012 install. I get this error after attempt to convert or create a CVI project. Also the CVI dialog has no details.
    Solved!
    Go to Solution.

    I did installed Labwindows 3 weeks ago. I installed visual studio yesterday. I updated labwindows for Visual Studio supprt. I was tried to create anew project from Visual Studio using CVI app wizards. Both wizards end with same results
    Thanks for posting reply

  • In past versions of CVI, using OpenFile with no path meant to look in the local path (in other words the install directory). Is there a way to do this in CVI 2013?

    I use an .ini file to allow the users to change the bootup preferneces for the program. In the past that file lived in the install directory and OpenFile could cheerfully find the file and apply the preferences. In CVI 2013, the program seems to need an implicit path to the file. Is there a way around this?
    Solved!
    Go to Solution.

    I'm not using CVI2013 yet, but in any case you can build up a full pathname for a file in the application folder using GetProjectDir and MakePathname commands at runtime.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • MSTcpIP.h errors in CVI 2012

    Hi 
    I have been using LabWindos CVI 8.1 and I am now looking into upgrading to 2012, so i have downloaded the trial version from the NI website and installed it. 
    When i open and go to compile my project which uses the Winsock2 library in CVI 2012 i get some stange errors inside mstcpip.h.
    "MSTcpIP.h"(331,1) syntax error; found 'identifier' expecting ';'. 
    #if (NTDDI_VERSION >= NTDDI_WIN2KSP1)
    MSTCPIP_INLINE
    BOOLEAN
    IN4_ADDR_EQUAL(__in CONST IN_ADDR *a, __in CONST IN_ADDR *b)
        return (BOOLEAN)(a->s_addr == b->s_addr);
    it is happening on the 3rd line which reads just BOOLEAN 
    which has been defined by this code in WinNT.h
    typedef BYTE BOOLEAN;
    typedef BOOLEAN *PBOOLEAN;
    where BYTE is defined in WinDef.h
    typedef unsigned char       BYTE;   
    I do have a typedef unsigned char Boolean; in my code but i don't think that should be a problem as C is case sensative. 
    Any help would be greatly apreciated
    Thanx
    -Jon

    Hi Daniel,
    Thanx for the reply 
    I had my includes in the following order
    #include <stdlib.h>
    #include <stdio.h>
    #include <winsock2.h>
    #include <windows.h>
    #include <MSTcpIP.h> 
    #include <Iphlpapi.h>
    //#include "C:\Program Files (x86)\National Instruments\CVI81\sdk\include\MSTcpIP.h"
    If i directly link to the old CVI8.1 file it compiles fine without errors.  
    I just rearanged the includes into this order 
    #include <windows.h>
    #include <MSTcpIP.h>
    #include <stdlib.h>
    #include <stdio.h>
    #include <winsock2.h>
    #include <Iphlpapi.h>
    And now it compiles fine, not really sure why but as long as it works  
    Thank you very much for your help,
    -Jon

  • Unable to install Directory Sync tool in windows server 2008 R2 Eneterprise

    Hi,
    I am unable to install Directory Sync  in windows server 2008 R2 Eneterprise.i have joined my machine domain joined computer running Windows Server 2008 r2 enterprise,when i click dirsync.exe then gives below Error.
    The Windows Azure Active Directory Sync tool must be installed on a domain joined computer running Windows Server 2008 Service Pack 2 or later,or Windows Server 2008 r2 Service Pack 1 or later
    Please help on this why this happing when i try to installed DirSync software.
    Regards
    Anil Kumar

    Hi,
    have you already installed .net framwork 3.5 and 4.5.1 on that machine?
    http://technet.microsoft.com/en-us/library/jj151831.aspx
    Also make sure that you run the install command from an elevated command prompt.
    Hope that helps,
    Lutz

  • Is there a way to create a new directory or file in application install directory programatically

    Hi to all,
    Is there a way to create a new directory or file in
    application install directory programatically.
    I want a xml file to be created with in the application
    install directory programatically(not the application storage
    directory)
    I have used the following code snippet:
    var file:File = new File();
    file = File.applicationDirectory;
    file = file.resolvePath("assets");
    if(!file.exists)
    file.createDirectory()
    I am thrown an exception when using this .....Security
    Exception

    Thanks, but my main problem is to delete the locally stored
    data that is stored in the application storage directory when the
    application is uninstalled.
    The data is not being deleted automatically when the
    application is uninstalled, thats why I want to write some file to
    application directory.
    My application is remembering the login username and password
    even I uninstall the application and reinstall the next
    time.

  • Upgrade from Windows Server 2012 Active Directory to Windows Server 2012 R2 Active Directory

    We are currently running Windows Server 2012 Active Directory and would like to upgrade to Windows Server 2012 R2 AD. Is it OK to just do an in-place upgrade, or is it advisable to build new domain controllers on R2? Are there any guides or articles anyone
    can recommend?

    Hi Ginandtonic,
    To upgrade DC(Domain Controller) from windows server 2012 to windows server 2012 r2, please refer to these articles:
    Upgrade from windows Server 2012 to 2012 R2                                 
    Upgrade Active Directory from 2012 to 2012 R2
    I hope this helps.
    Best Regards,
    Anna

  • Qsort issue with CVI 2012 in 64 bit mode

    Possible CVI 2012 64 bit bug.
    Qsort returns very slowly in CVI2012 in 64 bit release mode. Not sure if there are memory leaks or if function actually returns the correct answer as I fixed the problem before going back and isolating the issue to the code supplied. The issue seems to be resolved in CVI 2013.
    In the example provided, an array is created, seeded, and sorted. Approximate timing results (with a chi by eye averaging) are given below for an array of 1e6 double values.
    CVI 2012
    32 bit debug                         32 bit release                                       64 bit debug                                    64 bit release
    4.5 seconds                         0.32 seconds                                       4.3 seconds                                     44.0 seconds
    CVI 2013
    32 bit debug                         32 bit release                                       64 bit debug                                    64 bit release
    2.8 seconds                          0.22 seconds                                      2.0 seconds                                     0.18 seconds
    Attachments:
    qsort test.zip ‏3 KB

    Hey,
    Thank you for your feedback, I compiled your code and you are right. In CVI 2013 the problem seems to be solved. Unfortunately, I can't place a CAR (correction action request) for CVI 2012 because the problem has been addressed by our R&D department. 
    Thanks again for your feedback.

  • SQL Server 2012 Install Error 17182

    I am trying to install SQLSERVER 2012 SP1 (cuz my VisioStudios told me to) but the SQLEngine and Replication failed. Looking into the log I get the following:
    2014-03-20 15:04:42.61 spid5s      Starting up database 'msdb'.
    2014-03-20 15:04:42.61 spid11s     Unable to initialize SSL encryption because a valid certificate could not be found, and it is not possible to create a self-signed certificate.
    2014-03-20 15:04:42.62 spid11s     Error: 17182, Severity: 16, State: 1.
    2014-03-20 15:04:42.62 spid11s     TDSSNIClient initialization failed with error 0x80092004, status code 0x80. Reason: Unable to initialize SSL support. Cannot find object or property.
    2014-03-20 15:04:42.62 spid11s     Error: 17182, Severity: 16, State: 1.
    2014-03-20 15:04:42.62 spid11s     TDSSNIClient initialization failed with error 0x80092004, status code 0x1. Reason: Initialization failed with an infrastructure error. Check for previous errors. Cannot find object or property.
    2014-03-20 15:04:42.62 spid11s    
    Error: 17826, Severity: 18, State: 3. 
    Apparently there is something wrong with my certificate? If I run certutil -store - user I don't see any problems there
    So what do I do now?
    Should I just delete everything as suggested in thread "SQL Server 2012 Install Failure 17190, Severity:16, State:1"
    Thank You to anyone who can give me a hand!

    Hi ,
    According to your description, as other post, this error may be occurred due to a corrupt user profile for the account running SQL Services. You can try change the service account to a local (built-in) account which have permission to read the private key
    of the SSL certificate. In addition, according to your error message, we need to examine the certificates that have been generated launching mmc.exe, for more information, see:
    http://www.sqldbadiaries.com/2013/01/01/service-does-not-start-tdssniclient-initialization-failed-with-error-0x80092004-status-code-0x80/
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/8f27fbb3-1566-408a-bfde-abdde17fb424/ssl-sql-server-permission?forum=sqlsecurity
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • New 2012 Active Directory Domain - Naming Convention

    Hi Guys,
    I am working for a start-up company, who currently use Office 365 (Mid-Size Business) for their email and for the use of SharePoint.
    I have been tasked with designing and building a fresh new 2012 Active Directory, but I am a little unsure of how to name the new domain with Server 2012, previously I would have used a ".local" name, but I have read a lot of articles that say
    this should not be done anymore, rather we use the external domain name of the company with a sub-domain prefixed.
    Whilst I have read quite a bit about this method, there doesn't seem to be a clear right or wrong answer, can someone advise what would be best practice in my situation?
    Kind Regards
    Simon

    Thanks for all the information guys :-)
    Our external domain is as follows:
    company.parentcompany.org.uk
    I am now looking at using the following name internally:
     internal.company.parentcompany.org.uk
    What (if any) DNS entries are required for browsing to our website, and for using outlook online and lync online?
    Many thanks for any help that can be provided.
    Regards
    Simon.

  • ScriptUI get path to indesign install directory

    Does anyone know if there is a way to get a users path to their install directory?
    I have script, that creates a new menu item when Indesign starts up.  the menu item is clicked, it opens another script.
    Right now, I have the path to the second script hardcoded, which works fine:
         C:\Program Files (x86)\Adobe\Adobe InDesign CS5.5\Scripts\Scripts Panel\DM_Core\DM_RemoveMenu.vbs
    but now I have to give this to other users, and I need to know if there is some way to get the installation path that they have to their indesign.
    Ultimately, what I would like to get is this:
         C:\Program Files (x86)\Adobe\Adobe InDesign CS5.5\Scripts
    I have tried scriptsFolder but that doesn't take me to the right place.
    Anyone have any ideas.
    Thanks,

    This should get you what you want:
    function GetScriptsFolder (){
              var scriptsFolder = null;
              do{
              // On Mac this is a folder inside the app package
                        var appFolder = Folder.startup;
                        if (! appFolder.exists){break;}
                        scriptsFolder = Folder(appFolder + "/Scripts");
                        while (appFolder.exists && ! scriptsFolder.exists){
                                  appFolder = appFolder.parent;
                                  scriptsFolder = Folder(appFolder + "/Scripts");
                        if (! scriptsFolder.exists){
                                  scriptsFolder = null;
                                  break;
              while (false);
              return scriptsFolder;
    Harbs

  • How to get Operating systems Install Directory in Java

    Hey Friends
    I have a problem of getting to know Operating System Install directory in java for my application requriment.Can any body tell me how to know this or send me snippet of code
    THANKS

    Thanks for ur reply but i need to know the Operating System Install directory like c:\Windows & not the jre install directory.Your solution gives the jre installation dir.
    Any suggestions ?
    Thanks & Regards

  • SCOM 2012 Install problems - SQL Server 2012

    I am trying to install SCOM 2012 R2 on Server 2012. I cannot connect to sql the log file shows below. I have SQL 2012 installed and patched. Has anyone seen this before?
    [15:18:16]: Always:
    :DatabaseConfigurationPage: Attempting to connect to database using server\instance itp-operations\mssqlserver. If we need it, the port is 1433
    [15:18:16]: Debug:
    :MSSQLSERVER on server itp-operations is in a running state
    [15:18:16]: Info:
    :Info:Opening/Testing Sql Connection on itp-operations, port: 
    [15:18:16]: Debug:
    :Connection was not open.  We will try to open it.
    [15:18:16]: Debug:
    :SqlConnectionReady returned True.
    [15:18:16]: Debug:
    :MSSQLSERVER on server itp-operations is in a running state
    [15:18:16]: Debug:
    :Connection was not open.  We will try to open it.
    [15:18:16]: Debug:
    :SqlConnectionReady returned True.
    [15:18:16]: Info:
    :Info:Using DB command timeout = 1800 seconds.
    [15:18:16]: Info:
    :SQL Product Level: RTM
    [15:18:16]: Info:
    :SQL Edition: Standard Edition (64-bit)
    [15:18:16]: Info:
    :SQL Version: 11.0.2100.60
    [15:18:16]: Always:
    :Current Version of SQL=11.0.2100.60   Required Version=10.50.2500.0
    [15:18:16]: Always:
    :Entering GetRemoteOSVersion.
    [15:18:16]: Info:
    :Info: remoteOS = 6.3.9600
    [15:18:16]: Info:
    :Info:Using DB command timeout = 1800 seconds.
    [15:18:16]: Info:
    :Info:Using DB command timeout = 1800 seconds.
    [15:18:16]: Info:
    :The SQL Collation is valid.
    [15:18:16]: Info:
    :Info:Using DB command timeout = 1800 seconds.
    [15:18:16]: Info:
    :Info:DatabaseConfigurationPage: DB connection attempt completed.
    [15:18:16]: Info:
    :Info:DatabaseConfigurationPage: DB connection attempt completed.

    Hi,
    Please turn off firewall and retry it.
    In addition, please also follow the below two links when installing SCOM 2012:
    Walkthrough: Installing Operations Manager on a Single Server
    http://technet.microsoft.com/en-us/library/hh457006.aspx
    OpsMgr 2012: a quickstart deployment guide
    http://blogs.technet.com/b/kevinholman/archive/2012/04/26/deploying-opsmgr-2012-a-quick-start-guide.aspx
    Regards,
    Yan Li
    Regards, Yan Li

  • Problem to  install Directory Server 5.1 SP2 on Solaris

    Hi
    I need to install Directory Server 5.1 SP2 on Solaris 8. When I was asked to provide system user and system group, I provide "root" and "system". As a result, the installation fail message was shown and abort the installation.
    However, I was install the Directory Server 5.1 SP1 on solaris 8 successfully by using "root" and "system". Does anybody know why?
    Thanks and Regards,
    William Siu

    But i've more than 2 Go of free disk space !!!!
    "Tim Muratet" <[email protected]> wrote:
    >
    Sure...Get more disk space.
    "coolys" <[email protected]> wrote in message
    news:3a252a26$[email protected]..
    hi,when i decompress the weblogic510.exe file under NT, in the end of theself extracting i have the message below :"The decompression of %s failed.
    there may not be enough free disk space available in the TEMP"Can anybody
    help to resolve this problems.thanks for yours reponses.

Maybe you are looking for