如何通过代码获取Windows IP地址

时间:2013-12-22 10:38:20

标签: windows winapi batch-file

enter image description here 我需要将ppp IP地址存储到变量中。 我发现的唯一方法是'ipconfig> text.txt'进入tmp文件然后脚本搜索ppp接口。这很脏。

Windows中有更好的选择吗?

3 个答案:

答案 0 :(得分:1)

setlocal enabledelayedexpansion
for /f "delims=" %%a in ('ipconfig ^| find /i "IPv4 Address"') do (set VarIP=!%%a%!)
Echo Your PPP IP : %VarIP%

答案 1 :(得分:1)

@echo off
for /f "tokens=2,3 delims={,}" %%a in ('"WMIC NICConfig where IPEnabled="True" get IPAddress /value | find "I" "') do echo IPv4 %%~a IPV6 %%~b
pause

答案 2 :(得分:0)

您也可以使用ping提取:

@echo off
FOR /F "tokens=2,3" %%A IN ('ping %computername% -n 1 -4') DO IF "from"== "%%A" set "IP=%%~B"
echo %IP:~0,-1%