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.
DOS for command
Name: voz Date: February 11, 2009 at 03:08:12 Pacific OS: Windows Vista Subcategory: Batch
Comment:
Gotta make a batch file for my school but got some probs with using FOR. Need to copy the names of all the .txt files onto my dos screen by using for. But don't really know how to use it properly. Can anyone help me with it ?
Summary: I am attempting to 'rename' 3 .csv files in a directory using the following 'for' command in a batch file: for %%i in (*.csv) do (rename "%%i" "NewName%%i") The 3 files get renamed & then the first fi...
Summary: I need help with a batch file. Basically I've got a list of servers I need to run through and running a command for each. Here it is. for /f %%a in (serverlist.txt) do srvsec \\%%a >> srvsec.txt That...