通過命令提示符執行此操作的任何方式,無需使用任何第三方軟件或依賴於PowerShell?如何使用Windows命令提示符獲取公共IP地址?
一個簡單的命令就像在Linux/Mac上,我使用curl http://ipinfo.io/ip
。
謝謝!
通過命令提示符執行此操作的任何方式,無需使用任何第三方軟件或依賴於PowerShell?如何使用Windows命令提示符獲取公共IP地址?
一個簡單的命令就像在Linux/Mac上,我使用curl http://ipinfo.io/ip
。
謝謝!
正常dos批處理
@echo off
nslookup myip.opendns.com resolver1.opendns.com | find "Address" >"%temp%\test1.txt"
more +1 "%temp%\test1.txt" >"%temp%\test2.txt"
set /p MyIP=<%temp%\test2.txt
del %temp%\test2.txt
set MyIP=%MyIP:~10%
echo %MyIP%
嘗試這個現在,%MYIP%將可以是回聲或用作用於附加批量使用的變量。
任何方式在命令提示符下執行它而不使用powershell? – Tuco
對不起,我誤解了這個問題。更新了我的答案。 – Avalon
使用該命令時,請繼續收到_DNS請求。 :/ – Tuco