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.
run batch file from login script
Name: acemo Date: March 1, 2006 at 10:43:05 Pacific OS: novell 6 CPU/Ram: iduno Product: IBM
Comment:
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
Name: Shmuel Tropper (by stropper) Date: March 2, 2006 at 10:19:20 Pacific
Reply:
In the login script you can use one of this options: 1. Use the # sign which executes a program that is external to the login script while the rest of the login script continues. 2. Use the @ sigh which executes a program that is external to the login script and after it ends the login script continues. the syntax looks like: #z:cleantmp.bat @j:blabla.bat
Summary: 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 st...
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...