DOCUMENT:Q221762 18-DEC-2000 [win95x] TITLE :Error Message Using the CALL Command in Windows NT Logon Script PRODUCT :Microsoft Windows 95.x Retail Product PROD/VER:WINDOWS:95; winnt:4.0 OPER/SYS: KEYWORDS:kberrmsg kbtool win95 ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Windows 95 - Microsoft Windows NT Server version 4.0 ------------------------------------------------------------------------------- SYMPTOMS ======== If you use the call command in a Windows NT logon script, you may receive the following error message on some Windows 95-based computers during the logon process: Bad command or filename This problem does not occur if you run the call command after you log on, or if you map a drive to the Netlogon share and run a batch file that uses the call command. WORKAROUND ========== To work around this behavior, you can modify the logon script so that it does not use the call command. For example, assume that you want to use the following sample script: echo on call \\server1\share1\script1.bat Instead, use the following method: echo on net use x: \\server1\share1 x:\script1.bat net use x:/d This script does not use the call command but achieves the same result. Additional query words: ====================================================================== Keywords : kberrmsg kbtool win95 Technology : kbWinNTsearch kbWinNT400xsearch kbWinNTSsearch kbWinNTS400xsearch kbWinNTS400 kbWin95search kbZNotKeyword3 Version : WINDOWS:95; winnt:4.0 Issue type : kbprb ============================================================================= 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. Copyright Microsoft Corporation 2000.