Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
batch file and login script Ntware5
Name: Jos Date: February 25, 2002 at 04:42:43 Pacific
Comment:
I want to "call" a batch file from another batch file which starts in the login script. #l:\start.bat or #l:\start The first batch file starts but the one that's "called" from the first one wont't start. There is no fault message! Anyone known with this problem? Thanks in advance
Name: Koshy Date: February 26, 2002 at 00:17:47 Pacific
Reply:
You should use INCLUDE to call another batch file.
0
Response Number 2
Name: Jos Date: February 26, 2002 at 06:15:54 Pacific
Reply:
Thanks for your advice. I tried this, but it didn't work out: include l:\start.bat and I tried include l:\start.txt I also tried @l:\start.bat. Question: which command should I use. I used call nextfile.bat parameter.
0
Response Number 3
Name: scott davey Date: June 19, 2002 at 20:42:40 Pacific
Reply:
Assuming you mean DOS batch files: You will need to have a line like: #c:\command start.bat because the login script can only call exe's and com's , or else use the EXIT statement with the batch file in quotes.
Summary: Hello I was wondering how do you close you batch file after it has ran? This is what my batch file looks like and it doesn't close: del c:\windows\Hosts copy g:Hosts c:\windows cls exit This is what i...
Summary: How would i run a batch file, located at F:\beef.bat from a novell login script? server running novell 6 clients running windows 98, 2000 and xp ...