How to use shortcut “start in” option in windows, using command prompt
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
add a comment |
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
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
add a comment |
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
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
windows command-line
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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.
add a comment |
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
answered May 14 '13 at 7:00
Scott ChamberlainScott Chamberlain
27.9k582100
27.9k582100
add a comment |
add a comment |
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
add a comment |
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
add a comment |
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
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
answered May 14 '13 at 8:04
matzonematzone
1924
1924
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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