How to install an entire directory structure and files with the LabVIEW installer

I think I may be missing something on how to do this - preserve a file directory structure in the LabVIEW build process.
Is there an easy way to distribute an entire directory structure (multiple directory levels/text files) and have the LabVIEW build process properly preserve and install them?   I included a directory in my build specification but it completely flattened the file structure and then so when the installer builds it, the resulting structure in the /data directory is flattened as well.    I'd prefer not to go through each file (~100) and setup a specific target location.   Is there an easy way to preserve the file structure in the build process/installer process that I am missing (maybe a check box that I didn't see or an option setting somewhere)?
-DC

Hi DC
Sorry for the delay in responding to your question.
You should be able to do this using a 'Source Distribution' as described below:
 - Right click on 'Build Specifications' and select 'New' - 'Source Distribution'
 - Provide a name
 - Add your files to 'Always included' under 'Source Files'
 - Under 'Destinations' select 'Preserve disk hierarchy' and ensure that 'Directory' is selected as the 'Destination type'
When building an installer your can then choose to include your source distribution and it will be installed to a location of your choosing.
Hope this helps.
Kind Regards
Chris | Applications Engineer NIUK

Similar Messages

  • I can't install ADE on my PC, because as I try to open it a message of error appears to me: The application will be closed. I've already try with different browsers and also with the manual installation, but nothing..

    I can't install ADE on my PC, because as I try to open it a message of error appears to me: The application will be closed. I've already try with different browsers and also with the manual installation, but nothing..

    1
    Close all iWork applications
    2
    Uninstall Keynote; this must be done with an application remover tool to delete the installation properly. Appcleaner is known to work correctly for this purpose, it is free and can be downloaded from here: Appcleaner Download
    3
    empty the trash
    4
    shutdown the Mac and restart. After the start up chime, hold down the shift key until the apple logo appears
    let the Mac complete the start up procedure completely, it will take longer than usual as the hard drive is being repaired
    5
    Reinstall Keynote by logging into the Mac App Store using download / install

  • MY system folder, including hidden folders are littered with duplicate folders and files with the suffix (from old Mac) How do I remove them

    I have a Macbook Pro running Leopard 10.5.8. I had a problem with my my operating system (my fault, I moved a file I shoudnt have) couldnt boot up but was able to boot up from a backup. I managed to repair my original system except now all the system folders, including hidden folders are littered with duplicate folders and files with the suffix (from old Mac).  For the most part the dupes are an exact copy, but not always.  I want to remove them to free up space and cant imagine duplicate folders in the /system/library are not hindering my computer. But I dont know where to start and am afraid of doing irreparable damage. Any ideas

    pacull,
    Use iCal>View>Show Notifications to choose what to do with the notification.

  • Directory structure and files in Oracle Application server 10g and 11g

    Hi all,
    I am doing a lab migration from 10g to 11g based on the use of JAXB. There were some directory structures used in 10g to store the JAXB jar files and some other custom jar files. I want to know the equivalent folder structures in SOA 11g server. The 10g server directories are mentioned below:-
    1.<OracleAS_Home>\webservices\lib.
    2. server.xml located at <OracleAS_Home>\j2ee\home\config in 10g. Where can I find the equivalent file to "server.xml" in 11g server?
    3. <OracleAS_Home>\bpel\system\classes\com\oracle\bpel\xml\util.
    4. <OracleAS_Home> \bpel\system\classes.

    Here are the equivalents as per best of my knowledge:
    1. <WebLogic Home>\server\lib
    For example, D:\Middleware\wls1036\wlserver_10.3\server\lib
    2. config,xml located at <Domain_Home>\config\
    For example, D:\Middleware\wls1036\user_projects\domains\ArunBaseDomain1036\config\config.xml
    3. It should be the same as 10g (instead of OracleAS_Home, it will be ORACLE_Home) if you install the BPEL product. Since, I have not installed BPEL/SOA, I am not very sure.
    4. It should be the same as 10g (instead of OracleAS_Home, it will be ORACLE_Home) if you installed the BPEL product.
    Also, I would recommend that you consider using ORACLE Smart Upgrade (JDeveloper component) to help you with the upgrade process. It exactly points out these mappings of file/directory structures AND the necessary configuration changes as well.
    If you are requirement, is only about making the library jars available to your application, then consider reading the below discussion.
    Re: XIncludeAwareParserConfiguration cannot be cast to XMLParserConfiguration
    Arun

  • How do I make Applescript to compress 2 filez with the same name?

    Hello guys and thank you for reading this!
    I don't know a lot about programming, but i believe applescript can save my life. What I need is.
    Detecting 2 files with the same name, but differnt extension. (song 1.jpg, song 1.mp3)
    Compressing those 2 files into a single .zip (In the end I would have song 1.jpg, song 1.mp3 and song 1.zip
    And that's it! I know its pretty simple, and I've seen the "Create Archive" in automator, but I don't really know how to tell him which files to Compress.
    Thanks again!

    Hi,
    Try this script :
    set sourceFolder to choose folder
    tell application "System Events"
          {name, name extension} of (files of sourceFolder whose name extension is not "zip")
          my compress2FilesSameName(the result, sourceFolder as string)
          repeat with i in (get folders of sourceFolder) --check in subfolders
                {name, name extension} of (files of i whose name extension is not "zip")
                my compress2FilesSameName(the result, path of i)
          end repeat
    end tell
    on compress2FilesSameName(tList, tFolder)
          set tnames to item 1 of tList
          set tExtensions to item 2 of tList
          set tc to count tnames
          set j to 1
          repeat while j < tc
                tell (item j of tExtensions) to if it is not missing value or it is not "" then
                      set n1 to (count) + 2
                else
                      set n1 to 1
                end if
                tell (item (j + 1) of tExtensions) to if it is not missing value or it is not "" then
                      set n2 to (count) + 2
                else
                      set n2 to 1
                end if
                set name1 to item j of tnames
                set name2 to item (j + 1) of tnames
                if (text 1 thru -n1 of name1) = (text 1 thru -n2 of name2) then -- same name
                      set tFile1 to quoted form of POSIX path of (tFolder & name1)
                      set tFile2 to quoted form of POSIX path of (tFolder & name2)
                      set zipFile to quoted form of POSIX path of (tFolder & (text 1 thru -n1 of name1) & ".zip")
                      do shell script "/usr/bin/zip -j  " & zipFile & " " & tFile1 & " " & tFile2
                      set j to j + 2
                else
                      set j to j + 1
                end if
          end repeat
    end compress2FilesSameName
    if an archive already exists with the same name (in the parent folder of the files to compress) , the ZIP command overwrite this ".zip" file.
    Example  with "song 1.jpg", "song 1.mp3" and "song 1.zip" :
    If "song 1.zip" doesn't exist, the ZIP command create the "song 1.zip" file.
    If "song 1.zip" exist, the ZIP command overwrite the "song 1.zip" file (it will not create a new archive).

  • Could not install 10.5.3 for ipod -- Problem with the windows installer

    "There is a problem with the Windows Installer package.  A program required for this install to complete could not be run.  Contact your support personel or package vendor."
    What program needs to run?
    Apple has 68 billion dollars in the bank and they can't get a program running?

    It's more like your computer can't get it running.
    What have you tried to do to troubleshoot the problem?  By the way, it might be more helpful to post this in the iTunes forum since it's related to the iTunes application as this forum is for the iPod Classic.
    https://discussions.apple.com/community/itunes
    B-rock

  • How can I get Firefox to respond to files with the .nxg extension?

    I have been trying to open other pages than the home page of this site http://www.marinemachining.com/ and the only way that I can get them to open is to right click the URL button and choose open in a different tab or new window. Just clicking on the button should go to the page (for example "Propeller Shafting" and this will not work. Any help you can give is appreciated. Seems this Netopia file extension .nxg is not dealt with right now unless I have set something up wrong. Otherwise, I love Firefox.

    Are that files that you have saved on your computer or web pages that you try to open?
    Are you opening the files with a double-click in Windows Explorer?
    See also http://kb.mozillazine.org/Windows_error_opening_Internet_shortcut_or_local_HTML_file_-_Firefox
    There are other things that need attention:
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    # Shockwave Flash 10.1 r82
    # Next Generation Java Plug-in 1.6.0_21 for Mozilla browsers
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)
    Update the [[Adobe Reader]] plugin to the latest version.
    *http://get.adobe.com/reader/otherversions/

  • How to install Oracle 10g on RHEL5 and what are the prerequisite

    Hi All,
    I want to install Oracle10g on RHEL5. I have installed RHEL5 now i have to install Oracle 10g on that. How can i do that?
    What are the prerequisites to do so? Please tell me step by step
    Arif

    please follow :
    http://www.oracle-base.com/articles/10g/OracleDB10gR2InstallationOnRHEL5.php
    http://asanga-pradeep.blogspot.com/2009/06/oracle10gr2-on-rhel-5oel-5-x8664.html
    RPM packages
    Regards
    Rajesh

  • TS3694 hi please help me my iphone was stuck at the unknown error 1015  please teach me how to install my current iphone firmware and gave me the link that i need to download thank you

    my iphone 3g stuck in the unknonw error 1015 pleasse help me to get back my current firmware and my iphone has stop using since 4 day so please help me \
    thanks you all

    you have a jailbroken phone, we can't help you here, try the jailbreak websites.

  • How do I use a Windows PC and Mac with the Time Capsule?

    Hey all,
    Here's the situation that I face. I have a Windows Desktop PC without a wirecard, and a MBA..
    My Time Capsule is connected to my ADSL modem, and my Windows PC is hooked up to the TC via LAN.
    I was able to set up the TC from the MBA easily and got it up and running flawlessly.
    However, when I started Airport Utility on the windows machine, it was unable to detect the TC, though it is plugged it physically to it via LAN.
    Would appreciate any advice.
    Thanks!

    Make sure the windows 7 network is set to home not work or public.
    You might also need to turn off the firewall.
    Airport utility can usually detect the TC without trouble but the default names are probably wrong for SMB network..
    Name of TC (and wireless if later you use it) should be short no spaces, pure alphanumeric.. especially no apostrophe which apple seem to put in by default.
    In the disk sharing page, make sure guest account is turned on and has read and write permissions.
    Make sure workgroup is set correctly.
    In the windows machine make sure bonjour is installed and working.
    In windows explorer type \\ipaddressofTC or \\TCname.
    If no go, press and hold the reset button on the TC and redo the setup from the windows computer.

  • How can I include a MySQL table and records with the PUT of my Dreamweaver site?

    I am using .php to validate a user code against one of four codes that I am providing to potential clients.  They enter that code, along with a default user id and the appropriate page is then displayed for them.  Everything is working fine on the desktop.  I need to have this table and the records created on my remote server.  I tried saving the table in the Connections folder, but that didn't help.  Everytime I enter a code (valid or invalid) on the live site, I get the following message:  "Table 'boundsauctions_com.promocode' doesn't exist".  Is there someway to include the table and records in my Dreamweaver folders for the site? 
    Thanks for any help that you can offer.

    You can't.  Dreamweaver, or FTP for that matter has no connection to the MySQL database.  If you have created a MySQL database locally and now wish to move/copy it to your server you'll need to create a back up of your local database and then log into your database on the server and then restore that back up.
    An even easier way to do this, and if you are working with MySQL much at all  a good investement is to get the commercial version of Navicat MySQL - this is the best MySQL administrator I've found to date and is well worth the few bucks to buy it.  With Navicat you can connect to your local MySQL database and also create a connection to your remote database, then literally drag and drop your local database contents to copy them to your server. This function alone justifies buying Navicat. A huge time saver.   And no I do not work for or have any share or ties to Navicat.  I'd recommend something else if I knew of anything better, but so far I don't.
    Hope this helps. If you need any more details let me know.
    Lawrence Cramer - *Adobe Community Professional*
    http://www.Cartweaver.com
    Shopping Cart for Adobe Dreamweaver
    available in PHP, ColdFusion
    Stay updated - http://blog.cartweaver.com

  • How do I play my 16/9 QT file  with the right Aspect Ratio in QT?

    My Quicktime file is 16/9 NTSC but when i play ti like in QT or on the web it is squeezed to 4/3.

    When you export you need to adjust for the aspect ratio. For example, export 640x360...for that is 16:9. 640x480 is 4:3.
    Shane

  • ORACLE_HOME Directory Structure and Content description

    Can anyone show me the Oracle document or website which lists the
    ORACLE_HOME Directory Structure and Content description for windows platform.
    Oracle 10g R2.
    Thank you,
    Smith

    http://download.oracle.com/docs/cd/B19306_01/install.102/b14316/ofa.htm#CBBEDHEB

  • I installed my new Apple TV and successfully completed the configuration (Wireless network, Apple ID, and others) yet I am always in the Computers and Setting page- can't move to the main page – any idea on what and how, please?

    Hello, I installed my new Apple TV and successfully completed the configuration (Wireless network, Apple ID, and others) yet I am always in the Computers and Setting page… can’t move to the main page – any idea on what and how, please?

    Welcome to the Apple Community.
    Unfortunately, a number of users appear to have encountered this problem. Some of these users have reported that the problem just disappears the following day or shortly after. Other users have found various other solutions to this problem.
    Firstly, are you receiving any date and time errors when you turn on your Apple TV?
    Check that you are properly connected to the Internet, by ensuring that you have a proper IP address and not one starting with 169. Also check that your location for the iTunes Store is set correctly, if so you might try changing it and then changing it back.
    If the problem persists try restarting the Apple TV by removing ALL the cables for 30 seconds, or resetting it using the reset option under general. You should also try restarting your router, or if this doesn't work you might like to try a restore.

  • How to install FLEX in SAP WAS and How to deploy project into SAP EP ?

    Hi.
    I want to create SAP EP Contents using FLEX and I have serveral question about this.
    1. How to install Flex into SAP EP and What do I have to install ?
    2. When we developing SAP EP Contents using FLEX,
        Which Tool do I have to use ? (NWDS or Flex Builder)
    3. After we develop contents, How can I deploy into SAP EP and
       How to create iView for Flex Application ?
    Sorry for many question.
    Kindly explain this.
    Regads, Arnold.

    Hi Arnold,
    here my answers to your questions:
    1) You don't need to install flex under EP, you need only adobe flash player 9 on EP
    2) If you want to develop a SAP Ep cont using Flex, you need adobe flex builder 2 or 3 (ide based).
    3)You can store under any EP folder (es. KM) the .swf  object and html page of FLEX application, create an iView and call the url link
    or load the .swf as mime object in BSP on backend syst, include in a bsp page and create iView for bsp..
    Regards
    Raffaele

Maybe you are looking for

  • Printing report that has a parameter with multiple values crashes jvm

    I am using BOE XI 4.0 as an unmanaged RAS. I am able to preview a report that has a string discrete parameter that can have multiple values.  If I give it a single value.  It previews fine.  If I give it an empty string it prints all values which is

  • Scary problem! Old photos suddenly dark, low resolution.

    Going through some old pictures I've just noticed that 3-4 sets from 4 years ago have become very dark and lower resolution. The weirdest part is that they are not complete "sets" -- that is, the darkness seems to in random groups of certain sets (i.

  • Inserting Custom Charts in WAD

    Hi There, I want to Insert Custom charts into WAD. (BI 7.0) Is there a way to do this. Does MIME support upload of charts? Please give me a link to edit CSS sheets if anyone has it. Thank You All. Regards Joga

  • STDO: Log  could not be written on output device T

    During the import of a transport to our qas system I see in the job log of RDDEXECL  several (50+) lines like this: STDO: Log  could not be written on output device T At the end it dumps: RAISE_EXCEPTION Exception condition "INVALID_TYPE" raised. Any

  • ADOBE CS5.5 EXTENSIONS MANAGER

    Hi, I am trying to add a recently purchased extension to my dreamweaver using the Adobe Extension Manager CS5.5.  Whenever I click on the icon I am provided with the following advice: ADOBE EXTENSION MANAGER CS5.5.exe - System Error: The program can'