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.
calling batch file btween servers
Name: stephen_q Date: January 28, 2004 at 10:06:05 Pacific OS: Win 2000 CPU/Ram: P4/512
Comment:
Trying to call a batch file on a server1 from server2. Problem is both servers exist on different domains. Domain2 on which server2 resides has a name resolution to server1 and vice versa. If both servers where on the same domain then it's just a simple matter of entering the ff from the cmd prompt; \\server1\sharedDrive$\folder\batch.bat
From different domains, i need to pass server userid and password. Tried different switches but nothing has worked so far.
Summary: How to get a return variable from the called batch-file ? I'm having two batch files as follows A.bat : for /f "tokens=* delims=" %%a in (files.txt) do ( call B.bat var1 var2 var3 ) B.bat: set var4=%1...
Summary: I'm trying to get a batch file to remove %SUBSET% from %VARIABLE%, and let me use the remainder as %RESULT%. However, I can't seem to get the SET command to parse a nested string; SET RESULT=%VAR...
Summary: How to call one batch file after completing of another batch file. i am having one batch file to run the jboss server,after the server started.Then only the i have to start the browser from one batch ...