Ideas gathering here!

What would be the easiest way to make some aliases for windows xp's cmd, so one doesn't have to enter the same parameters over and over again?

For example,

rmdir /s would become rd (or just rmdir)
link|improve this question

63% accept rate
Too late; they already thought of that :) the builtin DOSKEY command does this – Nate Koppenhaver Nov 5 '11 at 1:51
feedback

1 Answer

up vote 7 down vote accepted

You can use the built-in doskey command for this.

For your example, you would type:

doskey rd=rmdir /s $*
link|improve this answer
Should've known that ... :/ Thanks ! – ldigas Nov 5 '11 at 2:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.