Simple Network check tool you can use for windows, on any PC.
make a text document file
put the name as - Network Tools.bat
And paste whole of this command there
@echo off
title Simple Network Tools
color 0A
:menu
cls
echo ==============================
echo NETWORK TOOLS
echo ==============================
echo.
echo 1. Continuous Ping Google
echo 2. Continuous Ping Cloudflare
echo 3. Show IP Information
echo 4. Flush DNS
echo 5. Renew IP Address
echo 6. Continuous Internet Test
echo 7. Trace Route
echo 8. Exit
echo.
set /p choice=Choose an option:
if "%choice%"=="1" goto google
if "%choice%"=="2" goto cloudflare
if "%choice%"=="3" goto ip
if "%choice%"=="4" goto dns
if "%choice%"=="5" goto renew
if "%choice%"=="6" goto internet
if "%choice%"=="7" goto tracert
if "%choice%"=="8" exit
goto menu
:google
cls
echo ==============================
echo CONTINUOUS PING GOOGLE
echo ==============================
echo.
echo Press Ctrl+C to stop the ping.
echo.
ping google.com -t
pause
goto menu
:cloudflare
cls
echo ==============================
echo CONTINUOUS PING CLOUDFLARE
echo ==============================
echo.
echo Press Ctrl+C to stop the ping.
echo.
ping 1.1.1.1 -t
pause
goto menu
:ip
cls
echo ==============================
echo IP INFORMATION
echo ==============================
echo.
ipconfig /all
echo.
pause
goto menu
:dns
cls
echo ==============================
echo FLUSH DNS
echo ==============================
echo.
ipconfig /flushdns
echo.
pause
goto menu
:renew
cls
echo ==============================
echo RENEW IP ADDRESS
echo ==============================
echo.
echo Releasing IP address...
ipconfig /release
echo.
echo Renewing IP address...
ipconfig /renew
echo.
pause
goto menu
:internet
cls
echo ==============================
echo CONTINUOUS INTERNET TEST
echo ==============================
echo.
echo Press Ctrl+C to stop the ping.
echo.
ping 8.8.8.8 -t
pause
goto menu
:tracert
cls
echo ==============================
echo TRACE ROUTE
echo ==============================
echo.
set /p target=Enter website or IP:
echo.
tracert %target%
echo.
pause
goto menu
Simple Network check tool you can use for windows, on any PC.
make a text document file
put the name as - Network Tools.bat
And paste whole of this command there