各位大大好,小弟這次又遇到困難了
就是用批次檔來撰寫可以查詢"對外IP"的方法
試了好多COMMAND都找不到有可以查詢的指令
請問有可以查詢對外IP的指令嗎?
netstat -ano > C:\netstat.txt
批次檔應該是可以實現的, 只是內建的指令不多, 所以要借由某些工具來使用~
1.電腦需要有支援 wget 指令
2.電腦要可以連接外網...
批次檔如下
<pre class="c" name="code">
@Echo Off
Color 0a
Mode con cols=48 lines=5
Set UD=2012/01/10 By Shyam
Rem 用途
Rem 取得本機電腦端連外真實IP
Rem 電腦需有 Wget 指令....
Wget myip.com.tw
For /f "tokens=6,4* delims=>" %%a in ('findstr "green" index.html') do echo %%a > index.html
For /f "tokens=2,1* delims=<" %%a in (index.html) do echo %%a > index.html
Cls
Echo.
Type Index.html
Echo.
Del Index.html
Pause