我想获取此页面的内容并将其保存为批处理变量。
http://ip-api.com/line?fields=2
如果可能的话,我只是想批量处理而没有任何外部应用程序或PowerShell命令。
上面的URL将返回当前IP地址的国家/地区代码。
我已经使用此批处理文件完成了操作,但是我不需要PowerShell代码:
@echo off
for /f "tokens=*" %%i in ('powershell /command "(Invoke-WebRequest -Uri 'http://ip-api.com/line?fields=2').Content"') do set return=%%i
echo "%return%"
pause