Why wont CMD work
I am using CMD but when ever I want to go to a specific location the response I get is not recognized as an internal or external command operable program or batch file. This happens no matter what location I choose to go to, even desktop, any ideas why this is happening?
for example
C:UsersHassan> is how it open and then when i type Desktop it displays
desktop is not recognized as an internal or external command operable program or batch file
windows command-line cmd.exe
add a comment |
I am using CMD but when ever I want to go to a specific location the response I get is not recognized as an internal or external command operable program or batch file. This happens no matter what location I choose to go to, even desktop, any ideas why this is happening?
for example
C:UsersHassan> is how it open and then when i type Desktop it displays
desktop is not recognized as an internal or external command operable program or batch file
windows command-line cmd.exe
4
And what command do you use to go to which specific location? Some commands you used would clarify a lot in this question. You can use the edit-link to edit your question.
– Rik
Nov 9 '13 at 12:19
4
I think you should take the time to Google up on how to use the terminal. There is a set of commands you have to execute to do these things. One cannot just writeDesktop
to be moved there. It has to be combined with a valid command.
– Mogget
Nov 9 '13 at 13:08
1
No offense, but you clearly don’t know much/anything about the command-prompt, which begs the question why are you using it at all? If you’re trying to do something specific, then you should ask that instead. If you’re simply trying to learn to use the command-prompt in general, then you should study up on it. We can help with the former, not the latter; this isn’t a tutorial site.
– Synetech
Nov 30 '13 at 22:44
add a comment |
I am using CMD but when ever I want to go to a specific location the response I get is not recognized as an internal or external command operable program or batch file. This happens no matter what location I choose to go to, even desktop, any ideas why this is happening?
for example
C:UsersHassan> is how it open and then when i type Desktop it displays
desktop is not recognized as an internal or external command operable program or batch file
windows command-line cmd.exe
I am using CMD but when ever I want to go to a specific location the response I get is not recognized as an internal or external command operable program or batch file. This happens no matter what location I choose to go to, even desktop, any ideas why this is happening?
for example
C:UsersHassan> is how it open and then when i type Desktop it displays
desktop is not recognized as an internal or external command operable program or batch file
windows command-line cmd.exe
windows command-line cmd.exe
edited Nov 9 '13 at 12:24
user270750
asked Nov 9 '13 at 11:55
user270750user270750
71
71
4
And what command do you use to go to which specific location? Some commands you used would clarify a lot in this question. You can use the edit-link to edit your question.
– Rik
Nov 9 '13 at 12:19
4
I think you should take the time to Google up on how to use the terminal. There is a set of commands you have to execute to do these things. One cannot just writeDesktop
to be moved there. It has to be combined with a valid command.
– Mogget
Nov 9 '13 at 13:08
1
No offense, but you clearly don’t know much/anything about the command-prompt, which begs the question why are you using it at all? If you’re trying to do something specific, then you should ask that instead. If you’re simply trying to learn to use the command-prompt in general, then you should study up on it. We can help with the former, not the latter; this isn’t a tutorial site.
– Synetech
Nov 30 '13 at 22:44
add a comment |
4
And what command do you use to go to which specific location? Some commands you used would clarify a lot in this question. You can use the edit-link to edit your question.
– Rik
Nov 9 '13 at 12:19
4
I think you should take the time to Google up on how to use the terminal. There is a set of commands you have to execute to do these things. One cannot just writeDesktop
to be moved there. It has to be combined with a valid command.
– Mogget
Nov 9 '13 at 13:08
1
No offense, but you clearly don’t know much/anything about the command-prompt, which begs the question why are you using it at all? If you’re trying to do something specific, then you should ask that instead. If you’re simply trying to learn to use the command-prompt in general, then you should study up on it. We can help with the former, not the latter; this isn’t a tutorial site.
– Synetech
Nov 30 '13 at 22:44
4
4
And what command do you use to go to which specific location? Some commands you used would clarify a lot in this question. You can use the edit-link to edit your question.
– Rik
Nov 9 '13 at 12:19
And what command do you use to go to which specific location? Some commands you used would clarify a lot in this question. You can use the edit-link to edit your question.
– Rik
Nov 9 '13 at 12:19
4
4
I think you should take the time to Google up on how to use the terminal. There is a set of commands you have to execute to do these things. One cannot just write
Desktop
to be moved there. It has to be combined with a valid command.– Mogget
Nov 9 '13 at 13:08
I think you should take the time to Google up on how to use the terminal. There is a set of commands you have to execute to do these things. One cannot just write
Desktop
to be moved there. It has to be combined with a valid command.– Mogget
Nov 9 '13 at 13:08
1
1
No offense, but you clearly don’t know much/anything about the command-prompt, which begs the question why are you using it at all? If you’re trying to do something specific, then you should ask that instead. If you’re simply trying to learn to use the command-prompt in general, then you should study up on it. We can help with the former, not the latter; this isn’t a tutorial site.
– Synetech
Nov 30 '13 at 22:44
No offense, but you clearly don’t know much/anything about the command-prompt, which begs the question why are you using it at all? If you’re trying to do something specific, then you should ask that instead. If you’re simply trying to learn to use the command-prompt in general, then you should study up on it. We can help with the former, not the latter; this isn’t a tutorial site.
– Synetech
Nov 30 '13 at 22:44
add a comment |
3 Answers
3
active
oldest
votes
When it opens with C:UsersHassan>
you need to type commands to do something.
For example if you want to go to your desktop you should type CD Desktop
+ enter
Now you have C:UsersHassanDesktop>
and you could use DIR
+ enter to see the content.
But what do you want to do there if you don't know any commands?
Here is a command-line tutorial. And here is a PDF which might be helpful.
add a comment |
The command prompt helpfully displays "'Desktop' is not recognized as an internal or external command, operable program or batch file," because 'Desktop' is not a command, operable program or batch file and cmd expects one of those things. The command to change directory is cd
and the line I presume you're looking for is cd Desktop
.
add a comment |
You just can't goto Desktop
by typing it. Type cd Desktop
instead to goto Desktop
folder!
The
cd
command documentation is on the MSDocs page.
Example:cd Desktop
will set your workspace folder asDekstop
.
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%2f671691%2fwhy-wont-cmd-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
When it opens with C:UsersHassan>
you need to type commands to do something.
For example if you want to go to your desktop you should type CD Desktop
+ enter
Now you have C:UsersHassanDesktop>
and you could use DIR
+ enter to see the content.
But what do you want to do there if you don't know any commands?
Here is a command-line tutorial. And here is a PDF which might be helpful.
add a comment |
When it opens with C:UsersHassan>
you need to type commands to do something.
For example if you want to go to your desktop you should type CD Desktop
+ enter
Now you have C:UsersHassanDesktop>
and you could use DIR
+ enter to see the content.
But what do you want to do there if you don't know any commands?
Here is a command-line tutorial. And here is a PDF which might be helpful.
add a comment |
When it opens with C:UsersHassan>
you need to type commands to do something.
For example if you want to go to your desktop you should type CD Desktop
+ enter
Now you have C:UsersHassanDesktop>
and you could use DIR
+ enter to see the content.
But what do you want to do there if you don't know any commands?
Here is a command-line tutorial. And here is a PDF which might be helpful.
When it opens with C:UsersHassan>
you need to type commands to do something.
For example if you want to go to your desktop you should type CD Desktop
+ enter
Now you have C:UsersHassanDesktop>
and you could use DIR
+ enter to see the content.
But what do you want to do there if you don't know any commands?
Here is a command-line tutorial. And here is a PDF which might be helpful.
answered Nov 9 '13 at 12:32
RikRik
11k12133
11k12133
add a comment |
add a comment |
The command prompt helpfully displays "'Desktop' is not recognized as an internal or external command, operable program or batch file," because 'Desktop' is not a command, operable program or batch file and cmd expects one of those things. The command to change directory is cd
and the line I presume you're looking for is cd Desktop
.
add a comment |
The command prompt helpfully displays "'Desktop' is not recognized as an internal or external command, operable program or batch file," because 'Desktop' is not a command, operable program or batch file and cmd expects one of those things. The command to change directory is cd
and the line I presume you're looking for is cd Desktop
.
add a comment |
The command prompt helpfully displays "'Desktop' is not recognized as an internal or external command, operable program or batch file," because 'Desktop' is not a command, operable program or batch file and cmd expects one of those things. The command to change directory is cd
and the line I presume you're looking for is cd Desktop
.
The command prompt helpfully displays "'Desktop' is not recognized as an internal or external command, operable program or batch file," because 'Desktop' is not a command, operable program or batch file and cmd expects one of those things. The command to change directory is cd
and the line I presume you're looking for is cd Desktop
.
answered Nov 9 '13 at 12:32
Marcks ThomasMarcks Thomas
5,53411736
5,53411736
add a comment |
add a comment |
You just can't goto Desktop
by typing it. Type cd Desktop
instead to goto Desktop
folder!
The
cd
command documentation is on the MSDocs page.
Example:cd Desktop
will set your workspace folder asDekstop
.
add a comment |
You just can't goto Desktop
by typing it. Type cd Desktop
instead to goto Desktop
folder!
The
cd
command documentation is on the MSDocs page.
Example:cd Desktop
will set your workspace folder asDekstop
.
add a comment |
You just can't goto Desktop
by typing it. Type cd Desktop
instead to goto Desktop
folder!
The
cd
command documentation is on the MSDocs page.
Example:cd Desktop
will set your workspace folder asDekstop
.
You just can't goto Desktop
by typing it. Type cd Desktop
instead to goto Desktop
folder!
The
cd
command documentation is on the MSDocs page.
Example:cd Desktop
will set your workspace folder asDekstop
.
answered Jan 7 at 7:54
TypeErrorTypeError
155
155
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%2f671691%2fwhy-wont-cmd-work%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
4
And what command do you use to go to which specific location? Some commands you used would clarify a lot in this question. You can use the edit-link to edit your question.
– Rik
Nov 9 '13 at 12:19
4
I think you should take the time to Google up on how to use the terminal. There is a set of commands you have to execute to do these things. One cannot just write
Desktop
to be moved there. It has to be combined with a valid command.– Mogget
Nov 9 '13 at 13:08
1
No offense, but you clearly don’t know much/anything about the command-prompt, which begs the question why are you using it at all? If you’re trying to do something specific, then you should ask that instead. If you’re simply trying to learn to use the command-prompt in general, then you should study up on it. We can help with the former, not the latter; this isn’t a tutorial site.
– Synetech
Nov 30 '13 at 22:44