Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Reparse points and /R

Charles Dye

Super Moderator
May
4,971
128
Staff member
CD, CDD, and PUSHD have a /R option to resolve reparse points. It seems to me that this option works in CDD, but is a no-op in the other two:
Code:
C:\>ver

TCC  21.01.61   Windows 7 [Version 6.1.7601]

C:\>dir /a /b c:\doc*
Documents and Settings [C:\Users]

C:\>cd /r "c:\Documents and Settings"\

C:\Users>-

C:\>cdd /r "c:\Documents and Settings"\

C:\Documents and Settings>-

C:\>pushd /r "c:\Documents and Settings"\

C:\Documents and Settings>popd

C:\>
 
Back
Top