ErrMsg: The Directory Name Is Invalid

Last reviewed: August 22, 1997
Article ID: Q164545
The information in this article applies to:
  • Microsoft Windows NT Workstation versions 3.51 and 4.0
  • Microsoft Windows NT Server versions 3.51 and 4.0

SYMPTOMS

When using the Pipe I/O redirection command ("|" without the quotes) in a batch file or in an MS-DOS session from within Windows NT, the following error may occur:

   The directory name is invalid.

CAUSE

The environment size value for the Comspec variable was explicitly set to a value greater than 2048.

For example:

Under System Variables, the value for Comspec appears as follows:

   ComSpec %SystemRoot%\system32\cmd.exe /e:xxxx

Where %SystemRoot% will be the drive and directory name where NT is installed, and xxxx is a value equal to or greater than 2048.

WORKAROUND

To work around this problem, perform one of the following:

  • Remove the /e:xxxx switch from the Comspec environment variable.

    The ComSpec environment variable is dynamic for Windows. Removing the /e: switch and its value may allow proper execution of the command.

    -or-

  • Use the redirection symbol (">" without the quotes) to perform the equivalent command.

    Example:

          DIR *.* | MORE  <enter>
    

    This command is equivalent to

          DIR *.* > PIPE0  <enter>
          MORE < PIPE0  <enter>
    

STATUS

Microsoft has confirmed this to be a problem in Windows NT version 3.51 and 4.0. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.


Additional query words: Pipe redirection invalid
Keywords : kbbug3.51 kbbug4.00 ntdosap NTSrvWkst kbenv
Version : WinNT:3.51,4.0
Platform : winnt
Issue type : kbbug


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: August 22, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.