Answers for "how to see your ip in cmd"

5

how to see your ip in cmd

ipconfig


BE AWARE! :
This is only your local ip, if you want to see your public ip you can 
go to https://ipchicken.com
Posted by: Guest on June-30-2021
0

check ip address using cmd

@echo off
setlocal
mode con:cols=110 lines=30

:start
cls

set /p localWireless=add adb local wireless usb ip address ? &
echo %localWireless% | findstr /i /r [A-za-z]
cls

if %errorlevel% equ 1 (
  msg %username% 'ip address is valid'
  goto start
) else (
  msg %username% 'ip address is not valid'
  goto start
)

pause
goto start
Posted by: Guest on October-27-2020

Code answers related to "how to see your ip in cmd"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language