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 to download files?
Name: uberstronzo Date: March 5, 2006 at 20:58:04 Pacific OS: winxp CPU/Ram: athlon xp 736mb
Comment:
is it possible to make a batch file to download and replace files? here is a line from one i tried but it said HTTP was not a recognised device
Summary: I actually got something working that will do just fine. @ECHO OFF FOR %%V IN (*.msg) DO FOR /F "tokens=1-5 delims=/: " %%J IN ("%%~tV") DO IF EXIST %%L%%J%%K_%%M%%N%%~xV (ECHO Cannot rename %%V) ELSE...
Summary: What is it that you are trying to do? Are you trying to make an install program? Then yes you could do it with Batch Scripting but this would be very painful. I recommend using an Open Source installe...
Summary: Hi, i am a novice for writing batch files, i would like to know how to write .bat file so that it can run the command "nbtstat -a 192.168.0.1" (for example)and store it in to some result text file. I...