Ping results in notepad - cmd

Can anyone please tell what is wrong in this code, what I am trying is to capture the date and time of link fail else, it shall report Link is working or it would be better if it shows the ping response.
#echo off
echo Internet Testing by RN Choudhury.
:loop
ping 8.8.8.8 -n 1 -w 60 > nul
if errorlevel 1 echo %date% - %time% Not connected >> InternetFail.txt else
echo Link is working
ping -n 30 127.0.0.1 > nul
goto loop

Continually output internet connection status to text file and host.
Windows 10 64-bit. Does not require admin privileges.
CMD batch script to continually output internet connection status to text file and host using ping, if/else, echo, re-direction and goto loop.
Ctrl+C to break out of loop.
#title Output internet connection status to text file and host.
#rem Windows 10 64-bit. Does not require admin privileges.
#echo off
setlocal enableextensions
cd.> InternetFail.txt
:loop
SET errorlevel=
ping -n 2 8.8.8.8 -w 60 | find "TTL=" > nul
REM ping -n 30 8.8.8.8 -w 60 | find "TTL=" > nul
if errorlevel == 1 (
(
ECHO.
ECHO %date% - %time% INTERNET DOWN
ping -n 2 8.8.8.8 -w 60
REM ping -n 30 8.8.8.8 -w 60
)>> InternetFail.txt
ECHO.
ECHO Ctrl+C to break out of loop.
ECHO.
ECHO %date% - %time% INTERNET DOWN
ping -n 2 8.8.8.8 -w 60
REM ping -n 30 8.8.8.8 -w 60
) else (
ECHO.
ECHO Ctrl+C to break out of loop.
ECHO.
ECHO %date% - %time% Link is working.
ping -n 2 127.0.0.1
REM ping -n 30 127.0.0.1
)
goto :loop
exit /b

Your if syntax is flawed:
if errorlevel 1 (echo %date% - %time% Not connected >> InternetFail.txt) else echo Link is working
or for better readabilty:
if errorlevel 1 (
echo %date% - %time% Not connected >> InternetFail.txt
) else (
echo Link is working
)
Note: ping may give false positives (Reply from <localhost>: destination not reachable technically is a response, so errorlevel will be zero.
Better use:
ping 8.8.8.8 -n 1 -w 60 | find "TTL=" > nul
Edit for additional requirements in comments:
#echo off
setlocal
set "logfile=InternetFail.txt"
set "host=8.8.8.8"
:loop
for /f "delims=" %%a in ('ping -n 1 -w 60 %host% ^|findstr /r "TTL= \.$"') do (
echo %%a|find "TTL=" >nul && (
>>"%logfile%" echo %date% %time% Link is up: %%a
echo %date% %time% Link is up: %%a
) || (
>>"%logfile%" echo %date% %time% Link is up: %%a
echo %date% %time% Link is up: %%a
)
)
timeout 30 >nul
goto :loop

Related

Check if Ping fails to connect and write to log

I have written a batch script that connects to network drives and copies files using a list of IPs in a text document - the script is as below.
TITLE Upgrading Contactless Price Limit
ECHO starting >> UpgradeLog.log
#ECHO on
rem CLS
echo Collect IP Address List
SET ListIP=C:\PMC\30To45Upgrade\tills.txt
echo Sets the folder we will use
SET PMC=C:\PMC\30To45Upgrade\VX820_cont45_Config\
ECHO Begin Mapping and Copying
ECHO.
echo Starts a FOR loop using the selected IP list
FOR /F %%a IN (%ListIP%) DO (
echo This will attempt to log into the C$ share of the target PC.
net use \\%%a\c$ /u:username password >NUL >> UpgradeLog.log
ECHO.
ECHO Copying directory to: %%a... >> UpgradeLog.log
ECHO.
echo Uses the Robocopy command to send the folder to the specified Till
mkdir \\%%a\c$\retailjava\icc\VX820_cont45_Config
C:\robocopy.exe %PMC% \\%%a\c$\retailjava\icc\VX820_cont45_Config /e /r:0 /w:10 /v /z >> UpgradeLog.log
ECHO.
ECHO Disconnecting from %%a... >> UpgradeLog.log
ECHO.
echo Disconnected from the share.
net use \\%%a\c$ /DELETE>NUL >> UpgradeLog.log)
ECHO. >> UpgradeLog.log
pause
However if the IP is offline it takes a long time to fail and move on to the next - I think the best solution if to ping the IP address first and if it does not respond move on to next
So a block of code like this
FOR /F %%a IN (%ListIP%) DO (
ping %%a >> Failed.log
)
However this block would write if it connected or not and I just want the failed pings - so not sure how to do this.
Also if I enter this in my code like this - even if it fails it carries on to the robocopy so it needs some sort of if/else statement as far as I can tell but not sure how to implement this. Any help?
Attempted Fix
TITLE Upgrading Contactless Price Limit
ECHO starting >> UpgradeLog.log
#ECHO on
rem CLS
echo Collect IP Address List
SET ListIP=C:\PMC\30To45Upgrade\tills.txt
echo Sets the folder we will use
SET PMC=C:\PMC\30To45Upgrade\VX820_cont45_Config\
ECHO Begin Mapping and Copying
ECHO.
echo Starts a FOR loop using the selected IP list
FOR /F %%a IN (%ListIP%) DO (
ping %%a | find "TTL=" && (
echo This will attempt to log into the C$ share of the target PC.
net use \\%%a\c$ /u:username password >NUL >> UpgradeLog.log
ECHO.
ECHO Copying directory to: %%a... >> UpgradeLog.log
ECHO.
echo Uses the Robocopy command to send the folder to the specified Till
mkdir \\%%a\c$\retailjava\icc\VX820_cont45_Config
C:\robocopy.exe %PMC% \\%%a\c$\retailjava\icc\VX820_cont45_Config /e /r:2 /w:10 /v /z >> UpgradeLog.log
ECHO.
ECHO Disconnecting from %%a... >> UpgradeLog.log
ECHO.
echo Disconnected from the share.
net use \\%%a\c$ /DELETE>NUL >> UpgradeLog.log
) || (
echo %%a Failed to connect >> failed.log
)
)
ECHO. >> UpgradeLog.log
pause
FOR /F %%a IN (%ListIP%) DO (
ping %%a | find "TTL=" && (
echo %%a is reachable
rem insert your payload here
) || (
echo %%a is not available
)
)
where && acts as "if previous command (find) was successful then" and || acts as "if previous command (find) failed then" (acts as "else" here)

Pinging to multiple servers via windows batch script

I'm trying to check response from list of n-thousand IPs using ping command via windows batch script and save all results in a file (yes if response and no if don't). Is this even possible via batch script? When I'm using script printed below (pingingN.bat) I'm getting only first IP answer.
#ECHO OFF
SET ServerList="C:\MyPath\ip.txt"
SET LogFile="C:\MyPath\PingResults.txt"
IF EXISTS %LogFile% DEL %LogFile%
FOR %%a IN (%ServerList%) DO (
ping -n 1 %%a | find "TTL=" > NUL
IF %ERRORLEVEL% NEQ 0 (
echo no >> %LogFile%
) ELSE (
echo yes >> %LogFile%
)
)
Based on my comment and using the && and || conditionals, here's how I would do it:
#Echo Off
Set "ServerList=C:\MyPath\ip.txt"
Set "LogFile=C:\MyPath\PingResults.txt"
If Not Exist "%ServerList%" Exit /B
>"%LogFile%" (For /F UseBackQ %%A In ("%ServerList%"
) Do Ping -n 1 %%A|Find "TTL=">Nul&&(Echo Yes [%%A])||Echo No [%%A])
You'll note that I have also included the IP in the output, otherwise your log file will not show you which ones did or didn't pass/fail.
you can use delayed Expansion or if errorlevel (as commented by aschipfl) or use another approach:
(FOR %%a IN (%ServerList%) DO (
ping -n 1 %%a | find "TTL=" > NUL && (
echo %%a, yes
) || (
echo %%a, no
)
)>%LogFile%
where && means "if previous command (find) was successful then" and || "if previous command (find) failed then"
Just redirecting once the whole output instead of each line on it's own gives you a big speed boost.
Create a file (test.txt) and list down all the IPs you want to ping.
Create another bat.file and write this command.
(for /F %i in (test.txt) do ping -n 1 %i 1>nul && echo %i UP || echo %i DOWN ) 1>result.txt
Run this command, It will list down which IP is up and which one is down.

Windows batch - Check if a bunch of IPs are online and sort them into the online ones

I need to check a bunch of IPs (DNSes) to see if they are online, and sort them into only the working ones.
Example:
input: 8.8.8.8 8.8.4.4 1.1.1.1 32.45.76.54 208.67.222.222
output: 8.8.8.8 8.8.4.4 208.67.222.222
Here is what I have so far:
set dns=8.8.8.8 8.8.4.4 1.1.1.1 32.45.76.54 208.67.222.222
set olddns=%dns%
set lastdns=0
set dnsnumber=1
:startdns
for /f "tokens=%dnsnumber%" %%i in ("%dns%") do set pickeddns=%%i
call:checkip %pickeddns%
if /i "%dnsstatus%"=="up" set /a dnsnumber=%dnsnumber%+1
if /i "%dnsstatus%"=="down" (for /f "tokens=1,*" %%a in ("%dns%") do set dns=%%b)
if /i "%lastdns%"=="%pickeddns%" goto :AddDNS
set lastdns=%pickeddns%
goto :startdns
:AddDNS
echo %dns%
pause
:checkip
cls
set ip=%~1
ping -n 1 -w 2000 %ip% | find "TTL"
if not errorlevel 1 set dnsstatus=up
if errorlevel 1 set dnsstatus=down
cls
goto :eof
I think the problem is in the
if /i "%dnsstatus%"=="down" (for /f "tokens=1,*" %%a in ("%dns%") do set dns=%%b)
because I want it to remove the not working DNS, but instead, it removes the first DNS in the list.
Anyone have a solution for this problem?
This should work for you. It does leave an extra space though when removing from the main DNS variable.
#echo off
SETLOCAL ENABLEDELAYEDEXPANSION
set dns=8.8.8.8 8.8.4.4 1.1.1.1 32.45.76.54 208.67.222.222
set olddns=%dns%
:startdns
for %%G in (%olddns%) do (
ping -n 1 -w 2000 %%G | find "TTL" >nul 2>&1
if errorlevel 1 set "dns=!dns:%%G=!"
)
echo %dns%
pause
goto :eof

Windows Batch Check Hostname Exists

I want to check if a hostname exists on my PC (ie found in hosts file under C:\Windows\System32\drivers\etc).
Is there a way to find if it exist using a batch command or some other way?
Give a try for this batch file with some extra info :
#echo off
set "SearchString=localhost"
set "LogFile=%userprofile%\Desktop\LogFile.txt"
set "hostspath=%windir%\System32\drivers\etc\hosts"
(
Echo **************************** General info ****************************
Echo Running under: %username% on profile: %userprofile%
Echo Computer name: %computername%
Echo Operating System:
wmic os get caption | findstr /v /r /c:"^$" /c:"^Caption"
Echo Boot Mode:
wmic COMPUTERSYSTEM GET BootupState | find "boot"
Echo Antivirus software installed:
wmic /Node:localhost /Namespace:\\root\SecurityCenter2 Path AntiVirusProduct Get displayName | findstr /v /r /c:"^$" /c:"displayName"
Echo Executed on: %date% # %time%
Echo ********************* Hosts' File Contents with the string "%SearchString%" ************************
)>"%LogFile%"
for /f "delims=" %%a in ('Type "%hostspath%" ^| find /I "%SearchString%"') Do (
echo %%a >> "%LogFile%"
)
Start "" "%LogFile%"
Easier and more robust solution
url.bat:
#echo off
set url=%1
ping -n 1 %url% > nul 2> nul
if "%errorlevel%"=="0" (
echo %url% exists
) else (
echo %url% does not exist
)
Test
> url.bat google.com
google.com exists
> url.bat google.commmmmm
google.commmmmm does not exist
What you possibly can do is pinging the hostname you are looking for and then check for certain strings, that will show you if the hostname could be found or not. Would look like this (I guess):
#echo off
setlocal EnableDelayedExpansion
set /p input= "Hostname"
set hostexists=yes
For /f "tokens=1,2" %%a in ('ping -n 1 !input!') do (
if "x%%a"=="xFOO" if "x%%b"=="xBAR" set hostexists=no
)
If "x!hostexists!"=="xno" (
echo. "Does not exist"
) ELSE (
echo. "Does exist"
Pause
Basic thought is that when you try to ping a hostname that is not available, you will get a specific output from the commandline. Try it yourself: Open the cmd.exe (Hit the Windows-Button +R and type cmd) and in the commandline write ping foobar and wait a bit. You should get a message like: Ping-Request could not find "foobar" [...]. You take the first two words and put them into the code: 1st word to FOO and 2nd to BAR.
The program will look into the output of the ping command and place the first two words (=tokens) in %%a and %%b checking if they are equal to the desired words, marking the host does not exist.
I hope this will help :) Not sure if that is what you wanted :D
Greetings
geisterfurz007

Batch ping a list of computer names and write the results to file

The code below will write the computer name and ip address to file, but I would like it to also write the name of the computers it cannot ping with a fail next to it. I have no idea how I would modify the batch file to do this.
#echo off
Echo Pinging list...
set ComputerList=list.txt
Echo Computername,IP Address>Final.csv
setlocal enabledelayedexpansion
for /f "usebackq tokens=*" %%A in ("%ComputerList%") do (
for /f "tokens=3" %%B in ('ping -n 1 -l 1 %%A ^|findstr Reply') do (
set IPadd=%%B
echo %%A,!IPadd:~0, -1!>>Results.csv
))
pause
You could use errorlevel set by findstr to substitute return string(s) if 'Reply' is not found:
('ping -n 1 -l 1 %%A ^|findstr Reply ^|^| echo Not found Failed:')
where || (escaped here because of for context with ^) means execute only if previous command failed.
As a side note, you should be aware that ping messages are system language dependent (they are translated to language of OS) so 'Reply' as success indicator works only for English versions.
This may not be directly what you are looking for, but I had a similar task: run ping and report success or failure. I'll leave extracting the IP address to you - seeing as you have already done it.
The problem with ping is that it returns success upon name resolution, whether packets get lost or host is unreachable (will report 0% Loss) is irrelevant.
FOR %%a IN (
google.com
a.b.c.d
) DO #FOR /F "delims=" %%p IN (
'PING -w 100 -n 1 %%a ^| findstr ^"Reply Request fail name^"'
) DO #(
ECHO "%%p" | FINDSTR TTL >2 && echo %%a, success, %%p || echo %%a, failed, %%p
) >> Results.csv
Logic: Ping once, filter only lines with the one of the words listed. If TTL exists in resulting line (output to STDERR or NUL to avoid output pollution) echo success, else echo failed.
I'm on English Windows, words will have to be adjusted for other languages.
EDIT:
FOR %%a IN (
google.com
a.b.c.d
) DO #FOR /F "delims=" %%p IN ('PING -n 1 %%a ^| findstr TTL ^|^| echo Failed') DO #(
ECHO "%%p" | FINDSTR TTL >2 && (for /f "tokens=3" %%b IN ("%%p") do #echo %%a, %%b) || echo %%a, failed, %%p
)
Less dependant on language, works only for IPv4, added IP extraction.
Filter ping output for TTL, set output to "Failed" if TTL not found.
If output string contains TTL, extract IP and echo host and IP, else echo host name and output string.

Resources