Plz help

F

fazlin

Hi all,

I typed the following cmd in the command prompt and ended up with lot
of logical dirives:

cmd /c for %a in (d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z) do
subst %a: %windir%

Now i dunno how to go back to original mode..


Any help will be appreciated..

Thanks,
Fazlin
 
E

Edwin vMierlo

cmd /c for %a in (d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z) do
subst %a: /D


the /D will delete the substitutions, you could have looked this up in the
help files or by running "subst /?" on the command prompt

why did you type this command in the first place ?
you shouldn't run commands like this if you do not know what it does.
 
F

fazlin

Thanks a lot..

Yep.. It was my mistake.. I saw it somewhere and just gave a try...


Anyway thanks again

Fazlin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top