Plz help

  • Thread starter Thread starter fazlin
  • Start date Start date
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
 
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.
 
Thanks a lot..

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


Anyway thanks again

Fazlin
 
Back
Top