- Aug
- 2,312
- 111
From CMD.EXE, when I use PUSHD with a UNC path, it changes to a drive letter;
From TCC.EXE, when I use PUSHD with a UNC path, it changes to the UNC path;
From the CMD.EXE PUSHD help;
Is there a switch in TCC that I can set to get this CMD compatibility?
Joe
Code:
c:\utils>pushd \\home-w2k\w2kutils
Z:\>
From TCC.EXE, when I use PUSHD with a UNC path, it changes to the UNC path;
Code:
c:\users\jlc\utils>pushd \\home-w2k\w2kutils
\\home-w2k\w2kutils>
From the CMD.EXE PUSHD help;
Code:
c:\utils>pushd /?
Stores the current directory for use by the POPD command, then
changes to the specified directory.
PUSHD [path | ..]
path Specifies the directory to make the current directory.
If Command Extensions are enabled the PUSHD command accepts
network paths in addition to the normal drive letter and path.
If a network path is specified, PUSHD will create a temporary
drive letter that points to that specified network resource and
then change the current drive and directory, using the newly
defined drive letter. Temporary drive letters are allocated from
Z: on down, using the first unused drive letter found.
Is there a switch in TCC that I can set to get this CMD compatibility?
Joe