Where was the DOS cdd utility from?









up vote
10
down vote

favorite












I distinctly remember, on the computer I had in the 90's, being able to type cdd D:blabla in the MS-DOS command prompt, to change both the current directory and drive (avoiding having to type D: then cd blabla).



I regularly still type it in the Windows command prompt, which complains that no such command exists. Then I remember I must do it with cd /d D:blabla.



So it likely means this specific command wasn't actually part of MS-DOS. Did it come from some set of third-party utilities? I remember I might have something like Norton Utilities installed, but I couldn't find information about this specific tool in its Wikipedia page.



Or is my memory weak and I just made this up?










share|improve this question



















  • 2




    I wouldn't das you made it up, but maybe you made a batch to do so for you? As for myself I never ever heared of such a command.
    – Raffzahn
    yesterday






  • 1




    By the way, generally I use pushd instead of cd /d - it is typed more easily (it's all letters, well distributed between the two hands, without need to shift to the symbols row) and you also get the bonus of popd to get back to where you were.
    – Matteo Italia
    22 hours ago







  • 2




    @Raffzahn it was actually very common and popular, back in the day
    – eis
    14 hours ago














up vote
10
down vote

favorite












I distinctly remember, on the computer I had in the 90's, being able to type cdd D:blabla in the MS-DOS command prompt, to change both the current directory and drive (avoiding having to type D: then cd blabla).



I regularly still type it in the Windows command prompt, which complains that no such command exists. Then I remember I must do it with cd /d D:blabla.



So it likely means this specific command wasn't actually part of MS-DOS. Did it come from some set of third-party utilities? I remember I might have something like Norton Utilities installed, but I couldn't find information about this specific tool in its Wikipedia page.



Or is my memory weak and I just made this up?










share|improve this question



















  • 2




    I wouldn't das you made it up, but maybe you made a batch to do so for you? As for myself I never ever heared of such a command.
    – Raffzahn
    yesterday






  • 1




    By the way, generally I use pushd instead of cd /d - it is typed more easily (it's all letters, well distributed between the two hands, without need to shift to the symbols row) and you also get the bonus of popd to get back to where you were.
    – Matteo Italia
    22 hours ago







  • 2




    @Raffzahn it was actually very common and popular, back in the day
    – eis
    14 hours ago












up vote
10
down vote

favorite









up vote
10
down vote

favorite











I distinctly remember, on the computer I had in the 90's, being able to type cdd D:blabla in the MS-DOS command prompt, to change both the current directory and drive (avoiding having to type D: then cd blabla).



I regularly still type it in the Windows command prompt, which complains that no such command exists. Then I remember I must do it with cd /d D:blabla.



So it likely means this specific command wasn't actually part of MS-DOS. Did it come from some set of third-party utilities? I remember I might have something like Norton Utilities installed, but I couldn't find information about this specific tool in its Wikipedia page.



Or is my memory weak and I just made this up?










share|improve this question















I distinctly remember, on the computer I had in the 90's, being able to type cdd D:blabla in the MS-DOS command prompt, to change both the current directory and drive (avoiding having to type D: then cd blabla).



I regularly still type it in the Windows command prompt, which complains that no such command exists. Then I remember I must do it with cd /d D:blabla.



So it likely means this specific command wasn't actually part of MS-DOS. Did it come from some set of third-party utilities? I remember I might have something like Norton Utilities installed, but I couldn't find information about this specific tool in its Wikipedia page.



Or is my memory weak and I just made this up?







ms-dos utilities






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday

























asked yesterday









dim

258210




258210







  • 2




    I wouldn't das you made it up, but maybe you made a batch to do so for you? As for myself I never ever heared of such a command.
    – Raffzahn
    yesterday






  • 1




    By the way, generally I use pushd instead of cd /d - it is typed more easily (it's all letters, well distributed between the two hands, without need to shift to the symbols row) and you also get the bonus of popd to get back to where you were.
    – Matteo Italia
    22 hours ago







  • 2




    @Raffzahn it was actually very common and popular, back in the day
    – eis
    14 hours ago












  • 2




    I wouldn't das you made it up, but maybe you made a batch to do so for you? As for myself I never ever heared of such a command.
    – Raffzahn
    yesterday






  • 1




    By the way, generally I use pushd instead of cd /d - it is typed more easily (it's all letters, well distributed between the two hands, without need to shift to the symbols row) and you also get the bonus of popd to get back to where you were.
    – Matteo Italia
    22 hours ago







  • 2




    @Raffzahn it was actually very common and popular, back in the day
    – eis
    14 hours ago







2




2




I wouldn't das you made it up, but maybe you made a batch to do so for you? As for myself I never ever heared of such a command.
– Raffzahn
yesterday




I wouldn't das you made it up, but maybe you made a batch to do so for you? As for myself I never ever heared of such a command.
– Raffzahn
yesterday




1




1




By the way, generally I use pushd instead of cd /d - it is typed more easily (it's all letters, well distributed between the two hands, without need to shift to the symbols row) and you also get the bonus of popd to get back to where you were.
– Matteo Italia
22 hours ago





By the way, generally I use pushd instead of cd /d - it is typed more easily (it's all letters, well distributed between the two hands, without need to shift to the symbols row) and you also get the bonus of popd to get back to where you were.
– Matteo Italia
22 hours ago





2




2




@Raffzahn it was actually very common and popular, back in the day
– eis
14 hours ago




@Raffzahn it was actually very common and popular, back in the day
– eis
14 hours ago










1 Answer
1






active

oldest

votes

















up vote
26
down vote



accepted










I remember CDD as a 4DOS command, which would have been available in the Norton Utilities as NDOS. JP Software’s other shells also implement CDD, so 4OS2 and 4NT users would probably recognise it too.



There is at least one batch file implementation of CDD too, developed by Gary Mays in 1996, and provided as part of his “M” batch file enhancer (which I can’t find on the Internet right now).



Under Windows you could use Take Command or TCC, the descendants of 4DOS, which still include CDD, or write a command file to implement it.






share|improve this answer


















  • 1




    Yes! NDOS, that's it. I remember now... Thanks.
    – dim
    yesterday










  • Depending from what one was running in the 1990s, it could alternatively have been 4NT or 4OS2. Also, present tense: Under Windows one can use TCC.
    – JdeBP
    11 hours ago










  • @JdeBP I intended that as the conditional tense, not the past tense. (Note the present “still include CDD”.) The OP explicitly mentioned using DOS.
    – Stephen Kitt
    11 hours ago











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "648"
;
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',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fretrocomputing.stackexchange.com%2fquestions%2f8208%2fwhere-was-the-dos-cdd-utility-from%23new-answer', 'question_page');

);

Post as a guest






























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
26
down vote



accepted










I remember CDD as a 4DOS command, which would have been available in the Norton Utilities as NDOS. JP Software’s other shells also implement CDD, so 4OS2 and 4NT users would probably recognise it too.



There is at least one batch file implementation of CDD too, developed by Gary Mays in 1996, and provided as part of his “M” batch file enhancer (which I can’t find on the Internet right now).



Under Windows you could use Take Command or TCC, the descendants of 4DOS, which still include CDD, or write a command file to implement it.






share|improve this answer


















  • 1




    Yes! NDOS, that's it. I remember now... Thanks.
    – dim
    yesterday










  • Depending from what one was running in the 1990s, it could alternatively have been 4NT or 4OS2. Also, present tense: Under Windows one can use TCC.
    – JdeBP
    11 hours ago










  • @JdeBP I intended that as the conditional tense, not the past tense. (Note the present “still include CDD”.) The OP explicitly mentioned using DOS.
    – Stephen Kitt
    11 hours ago















up vote
26
down vote



accepted










I remember CDD as a 4DOS command, which would have been available in the Norton Utilities as NDOS. JP Software’s other shells also implement CDD, so 4OS2 and 4NT users would probably recognise it too.



There is at least one batch file implementation of CDD too, developed by Gary Mays in 1996, and provided as part of his “M” batch file enhancer (which I can’t find on the Internet right now).



Under Windows you could use Take Command or TCC, the descendants of 4DOS, which still include CDD, or write a command file to implement it.






share|improve this answer


















  • 1




    Yes! NDOS, that's it. I remember now... Thanks.
    – dim
    yesterday










  • Depending from what one was running in the 1990s, it could alternatively have been 4NT or 4OS2. Also, present tense: Under Windows one can use TCC.
    – JdeBP
    11 hours ago










  • @JdeBP I intended that as the conditional tense, not the past tense. (Note the present “still include CDD”.) The OP explicitly mentioned using DOS.
    – Stephen Kitt
    11 hours ago













up vote
26
down vote



accepted







up vote
26
down vote



accepted






I remember CDD as a 4DOS command, which would have been available in the Norton Utilities as NDOS. JP Software’s other shells also implement CDD, so 4OS2 and 4NT users would probably recognise it too.



There is at least one batch file implementation of CDD too, developed by Gary Mays in 1996, and provided as part of his “M” batch file enhancer (which I can’t find on the Internet right now).



Under Windows you could use Take Command or TCC, the descendants of 4DOS, which still include CDD, or write a command file to implement it.






share|improve this answer














I remember CDD as a 4DOS command, which would have been available in the Norton Utilities as NDOS. JP Software’s other shells also implement CDD, so 4OS2 and 4NT users would probably recognise it too.



There is at least one batch file implementation of CDD too, developed by Gary Mays in 1996, and provided as part of his “M” batch file enhancer (which I can’t find on the Internet right now).



Under Windows you could use Take Command or TCC, the descendants of 4DOS, which still include CDD, or write a command file to implement it.







share|improve this answer














share|improve this answer



share|improve this answer








edited 11 hours ago

























answered yesterday









Stephen Kitt

33k4136153




33k4136153







  • 1




    Yes! NDOS, that's it. I remember now... Thanks.
    – dim
    yesterday










  • Depending from what one was running in the 1990s, it could alternatively have been 4NT or 4OS2. Also, present tense: Under Windows one can use TCC.
    – JdeBP
    11 hours ago










  • @JdeBP I intended that as the conditional tense, not the past tense. (Note the present “still include CDD”.) The OP explicitly mentioned using DOS.
    – Stephen Kitt
    11 hours ago













  • 1




    Yes! NDOS, that's it. I remember now... Thanks.
    – dim
    yesterday










  • Depending from what one was running in the 1990s, it could alternatively have been 4NT or 4OS2. Also, present tense: Under Windows one can use TCC.
    – JdeBP
    11 hours ago










  • @JdeBP I intended that as the conditional tense, not the past tense. (Note the present “still include CDD”.) The OP explicitly mentioned using DOS.
    – Stephen Kitt
    11 hours ago








1




1




Yes! NDOS, that's it. I remember now... Thanks.
– dim
yesterday




Yes! NDOS, that's it. I remember now... Thanks.
– dim
yesterday












Depending from what one was running in the 1990s, it could alternatively have been 4NT or 4OS2. Also, present tense: Under Windows one can use TCC.
– JdeBP
11 hours ago




Depending from what one was running in the 1990s, it could alternatively have been 4NT or 4OS2. Also, present tense: Under Windows one can use TCC.
– JdeBP
11 hours ago












@JdeBP I intended that as the conditional tense, not the past tense. (Note the present “still include CDD”.) The OP explicitly mentioned using DOS.
– Stephen Kitt
11 hours ago





@JdeBP I intended that as the conditional tense, not the past tense. (Note the present “still include CDD”.) The OP explicitly mentioned using DOS.
– Stephen Kitt
11 hours ago


















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fretrocomputing.stackexchange.com%2fquestions%2f8208%2fwhere-was-the-dos-cdd-utility-from%23new-answer', 'question_page');

);

Post as a guest














































































Popular posts from this blog

Kleinkühnau

Makov (Slowakei)

Deutsches Schauspielhaus