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: 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 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: 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: 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: 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: 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: 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: 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 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: 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: Hi, I'm trying to write a script that will ping a number of machines, If there's a reply continue to the next machine if not email me with alert. I'm ...
Summary: Hey again, Im working on a series of batch programs to help me this misc tasks around the network I work at, on feature i would like to include is to ...
Summary: Hi, I'm looking to create a batch file that first checks if a PC is connected (returns a reply in ping) then if so send a remote shutdown to that P...
Summary: Could you please help me with one more thing... I have a txt file with the following content: ================= Starting EC2 instance i-8xxx3e8... Sta...
Summary: Here is the code: for /f %%Q in (machines.txt) do ( ping -n 1 -w 3 %PingThis% IF %ERRORLEVEL% == 0 echo %%Q >> alive.txt ELSE echo %%Q Failed Ping >> ...