> | I have a folder called "My Documents" but typing 'CD "My
> | Documents"', with Extended Directory Search enabled, fails to find
> | it. Is this to be expected? I have run 'CDD /S' to index the drives.
> | I am running Windows 7 with the latest version of Take Command.
>=20
> The problem is that CD and CDD work on directories, while "My Documents" is=20
> a FOLDER. IN the MS Windows world, a FOLDER is a symbolic name ("alias") to=20
> a real directory created by the file system. In particular, all of the "My=20
> ..." folder names are dynamically assigned to the real directories when you=20
> log in. This allows each of the users of the computer to have their own,=20
> private folders, to which they can refer with the common phrase. This is=20
> like you and I both saying "I am at home", yet meaning two different=20
> locations. But don't despair - look at the variable function @SHFOLDER - it=20
> can provide the true names of nearly every "folder". Youcan create a simple=20
> TakeCommand alias:
>=20
> alias MyHome=3D`*cdd %@shfolder[5]`
>=20
> and voila! You now have a command, MyHome to do what you want. BTW, the=20
> capitalization is for recognizability, TCMD ignores case in all but a very=20
> few cases (all related to processing strings).