Specialty Forums
Security and Virus
General Hardware
CPUs/Overclocking
Networking
Digital Photo/Video
Office Software
PC Gaming
Console Gaming
Programming
Database
Web Development
Digital Home

General Forums
Windows XP
Windows Vista
Windows 95/98
Windows Me
Windows NT
Windows 2000
Win Server 2008
Win Server 2003
Windows 3.1
Linux
PDAs
BeOS
Novell Netware
OpenVMS
Solaris
Disk Op. System
Unix
Mac
OS/2

Drivers
Driver Scan
Driver Forum

Software
Automatic Updates

BIOS Updates

My Computing.Net

Solution Center

Free IT eBook

Howtos

Site Search

Message Find

RSS Feeds

Install Guides

Data Recovery

About

Home
Reply to Message Icon Go to Main Page Icon

Subject: Batch File - Ping > Send Command

Original Message
Name: xeroliun
Date: April 27, 2008 at 11:03:19 Pacific
Subject: Batch File - Ping > Send Command
OS: Windows XP
CPU/Ram: AMD
Model/Manufacturer: Elitegroup
Comment:
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 every PC name in the list

3. If the ping fails then put the failed PC name into a text file (failedping.txt)

4. If ping succeeds then remove a directory on the success PC (ex. rmdir c:\VNC /s /q)

Thank you,
X.


Report Offensive Message For Removal

Response Number 1
Name: Mechanix2Go
Date: April 27, 2008 at 19:23:01 Pacific
Subject: Batch File - Ping > Send Command
Reply: (edit)
Not tested

::===============================
@echo off > failedping.txt
setLocal EnableDelayedExpansion

for /f "tokens=* delims= " %%a in (pcnames.txt) do (
ping %%a | find "Reply" > nul
if errorlevel 1 (echo %%a >> failedping.txt
) else (
echo rd //%%a/c:/VNC /s /q
)
)


=====================================
If at first you don't succeed, you're about average.

M2


Report Offensive Follow Up For Removal

Response Number 2
Name: xeroliun
Date: April 28, 2008 at 04:36:31 Pacific
Subject: Batch File - Ping > Send Command
Reply: (edit)
Thanks M2, I really appreciate it.

Minor tweaking of the RD command on the last line, and it works PERFECTLY:

@echo off > failedping.txt
setLocal EnableDelayedExpansion

for /f "tokens=* delims= " %%a in (pcnames.txt) do (
ping %%a | find "Reply" > nul
if errorlevel 1 (echo %%a >> failedping.txt
) else (
rd \\%%a\c$\VNC /s /q
)
)

-----

Thanks again, I feel honored to be helped by the Master M2!

X.


Report Offensive Follow Up For Removal



Use following form to reply to current message:

   Name: From My Computing.Net Settings
 E-Mail: From My Computing.Net Settings

Subject: Batch File - Ping > Send Command

Comments:

 
  Homepage URL (*): 
Homepage Title (*): 
         Image URL: 
 


Data Recovery Software



Version Tracker Pro
Keep your software current and secure, effortlessly

Click Here for a Free Scan

Driver Agent
Automatically find the latest drivers for your computer.
Click Here for a Free Scan



The information on Computing.Net is the opinions of its users. Such opinions may not be accurate and they are to be used at your own risk. Computing.Net cannot verify the validity of the statements made on this site. Computing.Net and Computing.Net, LLC hereby disclaim all responsibility and liability for the content of Computing.Net and its accuracy.
PLEASE READ THE FULL DISCLAIMER AND LEGAL TERMS BY CLICKING HERE

All content ©1996-2007 Computing.Net, LLC