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
@echoofftitle Simple Network Tools
color 0A
:menuclsecho ==============================
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"gototracertif"%choice%"=="8"exitgoto menu
:googleclsecho ==============================
echo CONTINUOUS PING GOOGLE
echo ==============================
echo.
echo Press Ctrl+C to stop the ping.
echo.
ping google.com -t
pausegoto menu
:cloudflareclsecho ==============================
echo CONTINUOUS PING CLOUDFLARE
echo ==============================
echo.
echo Press Ctrl+C to stop the ping.
echo.
ping 1.1.1.1 -t
pausegoto menu
:ipclsecho ==============================
echo IP INFORMATION
echo ==============================
echo.
ipconfig /all
echo.
pausegoto menu
:dnsclsecho ==============================
echo FLUSH DNS
echo ==============================
echo.
ipconfig /flushdns
echo.
pausegoto menu
:renewclsecho ==============================
echo RENEW IP ADDRESS
echo ==============================
echo.
echo Releasing IP address...
ipconfig /release
echo.
echo Renewing IP address...
ipconfig /renew
echo.
pausegoto menu
:internetclsecho ==============================
echo CONTINUOUS INTERNET TEST
echo ==============================
echo.
echo Press Ctrl+C to stop the ping.
echo.
ping 8.8.8.8 -t
pausegoto menu
:tracertclsecho ==============================
echo TRACE ROUTE
echo ==============================
echo.
set /p target=Enter website or IP: echo.
tracert%target%echo.
pausegoto 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