Situatie
This Batch Pings a website you want and go to it
Open a notepad and paste the following, after save it asa a batch file (.bat)
Solutie
Pasi de urmat
:A
@echo off
Title Website Pinger
color 0e
echo Enter the website you would like to ping
set input=
set /p input= Enter your Website here:
if %input%==goto A if NOT B
echo Processing Your request
ping localhost>nul
echo ————————————————————————————-
echo ————————————————————————————-
ping localhost>nul
echo This is the IP=
ping %input%
set input=
set /p input= If you want to open this adress please enter the IP here:
start iexplore.exe %input%
set input2=
set /p input2=
if %input% exit goto exit
ping localhost -n 45 >nul
exit
:exit
exit
Leave A Comment?