Installation action duplicates source tree to install location during file extractioninstallation.log does not get copied to installation directoryHow to rename file in Install4j?Installer for copy-files-only possible?How to modify the source code of a war file with install4j?Is there a tree selection option for files & directories in install4j?Is it possible to specify the location of the static bundled jre in install4j?install4j + allow installer to create multiple new directories for installation locationInstall4j deletes jrebin folder during installationAvoid creating installation directory for patch installationInstall4J - Is it possible to copy Files of the distribution treee before InstallFiles Action?

What could cause lower torque than normal during cruise in a King Air 300?

Writing a program that will filter the integer solutions

Why does `FindFit` fail so badly in this simple case?

How to level a picture frame hung on a single nail?

Is the "spacetime" the same thing as the mathematical 4th dimension?

Was the ruling that prorogation was unlawful only possible because of the creation of a separate supreme court?

Can you cure a Gorgon's Petrifying Breath before it finishes turning a target to stone?

How to bring home documents from work?

Should I be an author on another PhD student's paper if I went to their meetings and gave advice?

If a spaceship ran out of fuel somewhere in space between Earth and Mars, does it slowly drift off to the Sun?

Would a 737 pilot use flaps in nose dive?

Holes in Wall of Force

Why would an airline put 15 passengers at once on standby?

How to work around players whose backstory goes against the story?

Why has Speaker Pelosi been so hesitant to impeach President Trump?

Why most footers have a background color has a divider of section?

Convert a string of digits from words to an integer

How is the Apple Watch ECG disabled in certain countries?

Would a horse be sufficient buffer to prevent injury when falling from a great height?

grounded outlets and code compliance

How to say "respectively" in German when listing (enumerating) things

Phonetic distortion when words are borrowed among languages

How does Monks' Improved Unarmored Movement work out of combat?

Impossible violin chord, how to fix this?



Installation action duplicates source tree to install location during file extraction


installation.log does not get copied to installation directoryHow to rename file in Install4j?Installer for copy-files-only possible?How to modify the source code of a war file with install4j?Is there a tree selection option for files & directories in install4j?Is it possible to specify the location of the static bundled jre in install4j?install4j + allow installer to create multiple new directories for installation locationInstall4j deletes jrebin folder during installationAvoid creating installation directory for patch installationInstall4J - Is it possible to copy Files of the distribution treee before InstallFiles Action?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















At the beginning of the Install4J installation action, it extracts all the files in the Distribution Tree to the install location where the user specifies the program should be installed (I don't want that happening as there are only certain files that need to get placed there). Later when I call either of the actions "Move Files/Directories" or "Copy Files/Directories", the files do not get moved or copied. In each of the actions, I specify that the files should be moved to the directory specified by the user, but nothing happens.



I have looked at the install4j admin guide, through other posts here (on StackOverflow), and many pages of Google and I haven't been able to find anything on this subject. I have also created a debug installer to see if anything is amiss and it has not helped. Please note that this installation is for Windows OS only.



When I execute the installer, I want it to only copy the files from the distribution tree that are specified in each "copy" or "move" action within the installation to the appropriate location on the target file-system. Not just extract the entirety of the source file tree to the user-specified "install directory".










share|improve this question






























    1















    At the beginning of the Install4J installation action, it extracts all the files in the Distribution Tree to the install location where the user specifies the program should be installed (I don't want that happening as there are only certain files that need to get placed there). Later when I call either of the actions "Move Files/Directories" or "Copy Files/Directories", the files do not get moved or copied. In each of the actions, I specify that the files should be moved to the directory specified by the user, but nothing happens.



    I have looked at the install4j admin guide, through other posts here (on StackOverflow), and many pages of Google and I haven't been able to find anything on this subject. I have also created a debug installer to see if anything is amiss and it has not helped. Please note that this installation is for Windows OS only.



    When I execute the installer, I want it to only copy the files from the distribution tree that are specified in each "copy" or "move" action within the installation to the appropriate location on the target file-system. Not just extract the entirety of the source file tree to the user-specified "install directory".










    share|improve this question


























      1












      1








      1








      At the beginning of the Install4J installation action, it extracts all the files in the Distribution Tree to the install location where the user specifies the program should be installed (I don't want that happening as there are only certain files that need to get placed there). Later when I call either of the actions "Move Files/Directories" or "Copy Files/Directories", the files do not get moved or copied. In each of the actions, I specify that the files should be moved to the directory specified by the user, but nothing happens.



      I have looked at the install4j admin guide, through other posts here (on StackOverflow), and many pages of Google and I haven't been able to find anything on this subject. I have also created a debug installer to see if anything is amiss and it has not helped. Please note that this installation is for Windows OS only.



      When I execute the installer, I want it to only copy the files from the distribution tree that are specified in each "copy" or "move" action within the installation to the appropriate location on the target file-system. Not just extract the entirety of the source file tree to the user-specified "install directory".










      share|improve this question














      At the beginning of the Install4J installation action, it extracts all the files in the Distribution Tree to the install location where the user specifies the program should be installed (I don't want that happening as there are only certain files that need to get placed there). Later when I call either of the actions "Move Files/Directories" or "Copy Files/Directories", the files do not get moved or copied. In each of the actions, I specify that the files should be moved to the directory specified by the user, but nothing happens.



      I have looked at the install4j admin guide, through other posts here (on StackOverflow), and many pages of Google and I haven't been able to find anything on this subject. I have also created a debug installer to see if anything is amiss and it has not helped. Please note that this installation is for Windows OS only.



      When I execute the installer, I want it to only copy the files from the distribution tree that are specified in each "copy" or "move" action within the installation to the appropriate location on the target file-system. Not just extract the entirety of the source file tree to the user-specified "install directory".







      install4j






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 28 at 20:19









      SirTechSirTech

      62 bronze badges




      62 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0
















          The "Install files" action installs files that are in selected file sets and installation components.



          You can programmatically change the selection state of file sets and installation components. For example



          context.getFileSetById("123").setSelected(false); 


          or



          context.getInstallationComponentById("123").setSelected(false); 



          When I execute the installer, I want it to only copy the files from the distribution
          tree that are specified in each "copy" or "move" action within the installation to the
          appropriate location on the target file-system.




          No, it does not work that way, those actions operate on existing files.






          share|improve this answer




















          • 1





            That worked, thanks for the help!

            – SirTech
            Mar 29 at 15:24













          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );














          draft saved

          draft discarded
















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55406229%2finstallation-action-duplicates-source-tree-to-install-location-during-file-extra%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0
















          The "Install files" action installs files that are in selected file sets and installation components.



          You can programmatically change the selection state of file sets and installation components. For example



          context.getFileSetById("123").setSelected(false); 


          or



          context.getInstallationComponentById("123").setSelected(false); 



          When I execute the installer, I want it to only copy the files from the distribution
          tree that are specified in each "copy" or "move" action within the installation to the
          appropriate location on the target file-system.




          No, it does not work that way, those actions operate on existing files.






          share|improve this answer




















          • 1





            That worked, thanks for the help!

            – SirTech
            Mar 29 at 15:24















          0
















          The "Install files" action installs files that are in selected file sets and installation components.



          You can programmatically change the selection state of file sets and installation components. For example



          context.getFileSetById("123").setSelected(false); 


          or



          context.getInstallationComponentById("123").setSelected(false); 



          When I execute the installer, I want it to only copy the files from the distribution
          tree that are specified in each "copy" or "move" action within the installation to the
          appropriate location on the target file-system.




          No, it does not work that way, those actions operate on existing files.






          share|improve this answer




















          • 1





            That worked, thanks for the help!

            – SirTech
            Mar 29 at 15:24













          0














          0










          0









          The "Install files" action installs files that are in selected file sets and installation components.



          You can programmatically change the selection state of file sets and installation components. For example



          context.getFileSetById("123").setSelected(false); 


          or



          context.getInstallationComponentById("123").setSelected(false); 



          When I execute the installer, I want it to only copy the files from the distribution
          tree that are specified in each "copy" or "move" action within the installation to the
          appropriate location on the target file-system.




          No, it does not work that way, those actions operate on existing files.






          share|improve this answer













          The "Install files" action installs files that are in selected file sets and installation components.



          You can programmatically change the selection state of file sets and installation components. For example



          context.getFileSetById("123").setSelected(false); 


          or



          context.getInstallationComponentById("123").setSelected(false); 



          When I execute the installer, I want it to only copy the files from the distribution
          tree that are specified in each "copy" or "move" action within the installation to the
          appropriate location on the target file-system.




          No, it does not work that way, those actions operate on existing files.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 29 at 8:36









          Ingo KegelIngo Kegel

          36.8k8 gold badges57 silver badges89 bronze badges




          36.8k8 gold badges57 silver badges89 bronze badges










          • 1





            That worked, thanks for the help!

            – SirTech
            Mar 29 at 15:24












          • 1





            That worked, thanks for the help!

            – SirTech
            Mar 29 at 15:24







          1




          1





          That worked, thanks for the help!

          – SirTech
          Mar 29 at 15:24





          That worked, thanks for the help!

          – SirTech
          Mar 29 at 15:24




















          draft saved

          draft discarded















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55406229%2finstallation-action-duplicates-source-tree-to-install-location-during-file-extra%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript