开发者

Get IP address from IPConfig, use later in code, or save [closed]

开发者 https://www.devze.com 2023-02-19 14:48 出处:网络
This question is unlikely 开发者_C百科to help any future visitors; it is only relevant to a small geographic area, a specific moment in time,or an extraordinarily narrow situation that is not gene
This question is unlikely 开发者_C百科to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 11 years ago.

Is it possible to run a code that searches IPConfig for the IP address then saves that to a text document or enters it into the prompt? I want to be able to plug my flash drive into a computer, run said batch file and either use that IP address or save it.


FULL code

@ECHO OFF
ECHO.


FOR /F "TOKENS=2* DELIMS=:" %%A IN ('IPCONFIG ^| FIND "IPv4"') DO FOR %%B IN (%%A) DO SET IPADDR=%%B
ECHO %IPADDR% > file.txt



:End

The previous code will store your local ip into file.txt


Just run the follow

IpConfig >> C:\myip.txt

0

精彩评论

暂无评论...
验证码 换一张
取 消