Summary: Ok so i have this batch file to ping a list of ip's This is what i have: @echo off cd C:\Documents and Settings\username\My Documents\Ping printers pi...
Summary: Hello! I have a lot of machine inactives in the Domain, i have a list of computer (Inactive) and i want a batch to do: ping a computer from a list (ex...
Summary: Hi, I have written a batch to ping Google (Internet Test) and then ping a server of ours (VPN Test) and the third thing I'd like to do is to check to ...
Summary: Hi M2, @echo off for /f "tokens=*" %%I in (IPlist) do call :pinger %%I goto :eof :pinger echo %TIME% >> pingLOG ping %1 >> pingLOG :: DONE I am using ...
Summary: Trying to write my first batch file to extract some text. The text format is as follows. xxxxxx:yyyyyy-zzzzzz The first file I wrote was. @echo on FOR...
Summary: Hi Batch Experts, I have a batch file that (on exec) prints all the files (filename.ext only) in the current dir to a notepad and saves the txt ...
Summary: Hello again All, I'm currently working on a project that requires a batch to be ran on two windows server 2003. I have a batch file on both servers ...
Summary: Batch file, ping results I want to run something similar at command prompt and display a custom message ping www.ebay.com.at if ping results == "could...
Summary: Hello, I'm hoping someone can help me with a problem. I need to have a batchfile rename a file with the current date, and move the file to a corrisp...
Summary: Hello, I am kindly looking for a batch file that will do the following. 1. I have a list of 10 PC names in a text file (pcnames.txt) 2. I want to ping...
Summary: How do I parse a text file for MUlTIPLE words? I run a utility that outputs the results to a text file. However, due to the nature of how the utility...
Summary: I was trying to reformat a ping command in batch to only produce what I wanted. However after running the file, it wouldn't output a single thing othe...
Summary: try this one. this is one is a bit slow because it read all the lines into temp file. i dont know the syntax to read a file char by char, nor the synt...
Summary: Hi! I'm new here, so hopefully some1 can guide me in creating a batch (I'm using XP). Here's the purpose: 1) I have a folder named "ABC". 2) I used a ...
Summary: Hi, i want to write a batch to do the following job. Now i have a.txt and b.txt. a.txt contains the information like: List1 Error SimulationError a L...
Summary: I need a specific batch to rename txt files to a format, using the data from the txt file itself. data within the files is for example: 0199999920090...
Summary: I'm new to DOS batch files but help to do the following: find any files under a certain size in a directory and move them to another directory.. ...
Summary: I suppose "mspro sp 2" means XP. The reason for this error: "The process cannot access the file because it is being used by another process." is becau...
Summary: A (indirect) way to enable the batch to be aware of the download's end is to costantly (say every five minutes) monitor the files' size and presence i...
Summary: i mean move it by using another batch file. ou see, someone keeps moving this one file and i want to just run a batch to move it instead of wasting 3...
Summary: I want to use a batch to copy files to a plugged in flashdrive. How can I get the drive letter of the flashdrive? (I use different computers so the dr...
Summary: Mechanix2, I found this batch file that you created for someone here, and would like to expand on it. :: multiIP.bat @echo off > pingLOG for /f "token...