How to use shortcut “start in” option in windows, using command prompt












0















I have an executable. I want to start that program in a different folder, rather than starting it in my current folder. Shortcut does have an option where you can specify where you want to start the program. How to do it command line. Thanks.










share|improve this question


















  • 1





    Can you clarify your question? When you use the command line the "start in" folder is whatever folder you where in when you started the program, your question does not make sense as-is, could you re-word it or add more details?

    – Scott Chamberlain
    May 14 '13 at 6:55
















0















I have an executable. I want to start that program in a different folder, rather than starting it in my current folder. Shortcut does have an option where you can specify where you want to start the program. How to do it command line. Thanks.










share|improve this question


















  • 1





    Can you clarify your question? When you use the command line the "start in" folder is whatever folder you where in when you started the program, your question does not make sense as-is, could you re-word it or add more details?

    – Scott Chamberlain
    May 14 '13 at 6:55














0












0








0








I have an executable. I want to start that program in a different folder, rather than starting it in my current folder. Shortcut does have an option where you can specify where you want to start the program. How to do it command line. Thanks.










share|improve this question














I have an executable. I want to start that program in a different folder, rather than starting it in my current folder. Shortcut does have an option where you can specify where you want to start the program. How to do it command line. Thanks.







windows command-line






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked May 14 '13 at 6:53









user666207user666207

111




111








  • 1





    Can you clarify your question? When you use the command line the "start in" folder is whatever folder you where in when you started the program, your question does not make sense as-is, could you re-word it or add more details?

    – Scott Chamberlain
    May 14 '13 at 6:55














  • 1





    Can you clarify your question? When you use the command line the "start in" folder is whatever folder you where in when you started the program, your question does not make sense as-is, could you re-word it or add more details?

    – Scott Chamberlain
    May 14 '13 at 6:55








1




1





Can you clarify your question? When you use the command line the "start in" folder is whatever folder you where in when you started the program, your question does not make sense as-is, could you re-word it or add more details?

– Scott Chamberlain
May 14 '13 at 6:55





Can you clarify your question? When you use the command line the "start in" folder is whatever folder you where in when you started the program, your question does not make sense as-is, could you re-word it or add more details?

– Scott Chamberlain
May 14 '13 at 6:55










2 Answers
2






active

oldest

votes


















0














If I understand your question you want to change the current directory before starting a program from the command line.



If that is what you want done just do a cd yourpathhere followed by a & then your program.



For example



cd /D C:Users & dir


Will change the active directory to C:Users (the /D is so it will change drive letters if necessary) then do the dir command in that folder.






share|improve this answer































    0














    Execute in command line



    full path + your.exe



    example : D:somefoldertest.exe [Enter]



    Or create shortcut in Windows




    • Open 'Windows Explorer' and goto the app's folder Right click on


    • the fileapp -> Choose 'Send to' -> Choose 'Desktop (create shortcut)'



      So you can execute the app from your desktop








    share|improve this answer























      Your Answer








      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "3"
      };
      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/3.0/"u003ecc by-sa 3.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%2fsuperuser.com%2fquestions%2f595300%2fhow-to-use-shortcut-start-in-option-in-windows-using-command-prompt%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      If I understand your question you want to change the current directory before starting a program from the command line.



      If that is what you want done just do a cd yourpathhere followed by a & then your program.



      For example



      cd /D C:Users & dir


      Will change the active directory to C:Users (the /D is so it will change drive letters if necessary) then do the dir command in that folder.






      share|improve this answer




























        0














        If I understand your question you want to change the current directory before starting a program from the command line.



        If that is what you want done just do a cd yourpathhere followed by a & then your program.



        For example



        cd /D C:Users & dir


        Will change the active directory to C:Users (the /D is so it will change drive letters if necessary) then do the dir command in that folder.






        share|improve this answer


























          0












          0








          0







          If I understand your question you want to change the current directory before starting a program from the command line.



          If that is what you want done just do a cd yourpathhere followed by a & then your program.



          For example



          cd /D C:Users & dir


          Will change the active directory to C:Users (the /D is so it will change drive letters if necessary) then do the dir command in that folder.






          share|improve this answer













          If I understand your question you want to change the current directory before starting a program from the command line.



          If that is what you want done just do a cd yourpathhere followed by a & then your program.



          For example



          cd /D C:Users & dir


          Will change the active directory to C:Users (the /D is so it will change drive letters if necessary) then do the dir command in that folder.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered May 14 '13 at 7:00









          Scott ChamberlainScott Chamberlain

          27.9k582100




          27.9k582100

























              0














              Execute in command line



              full path + your.exe



              example : D:somefoldertest.exe [Enter]



              Or create shortcut in Windows




              • Open 'Windows Explorer' and goto the app's folder Right click on


              • the fileapp -> Choose 'Send to' -> Choose 'Desktop (create shortcut)'



                So you can execute the app from your desktop








              share|improve this answer




























                0














                Execute in command line



                full path + your.exe



                example : D:somefoldertest.exe [Enter]



                Or create shortcut in Windows




                • Open 'Windows Explorer' and goto the app's folder Right click on


                • the fileapp -> Choose 'Send to' -> Choose 'Desktop (create shortcut)'



                  So you can execute the app from your desktop








                share|improve this answer


























                  0












                  0








                  0







                  Execute in command line



                  full path + your.exe



                  example : D:somefoldertest.exe [Enter]



                  Or create shortcut in Windows




                  • Open 'Windows Explorer' and goto the app's folder Right click on


                  • the fileapp -> Choose 'Send to' -> Choose 'Desktop (create shortcut)'



                    So you can execute the app from your desktop








                  share|improve this answer













                  Execute in command line



                  full path + your.exe



                  example : D:somefoldertest.exe [Enter]



                  Or create shortcut in Windows




                  • Open 'Windows Explorer' and goto the app's folder Right click on


                  • the fileapp -> Choose 'Send to' -> Choose 'Desktop (create shortcut)'



                    So you can execute the app from your desktop









                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered May 14 '13 at 8:04









                  matzonematzone

                  1924




                  1924






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Super User!


                      • 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%2fsuperuser.com%2fquestions%2f595300%2fhow-to-use-shortcut-start-in-option-in-windows-using-command-prompt%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

                      Index of /

                      Tribalistas

                      Listed building