标题: [网络连接] 求大神帮忙看看以下代码哪里有问题,谢谢! [打印本页]
作者: fsshzhj 时间: 2019-4-4 15:07 标题: 求大神帮忙看看以下代码哪里有问题,谢谢!
@echo off
setlocal DISABLEDELAYEDEXPANSION
::取本机IP地址
call :select "ip address" "ip"
::取网段值
set ipadd=%ip:~8,2%
echo %ip%
echo %ipadd%
pause
exit
::**************************************************************
:: 解析ipconfig命令输出通用函数
::**************************************************************
:select
for /f "tokens=2 delims=:" %%i in ('ipconfig /all ^| findstr /i /c:%1') do if not "!%~2!" == "" set "%~2=%%i"
goto :eof
作者: xczxczxcz 时间: 2019-4-4 16:20
本帖最后由 xczxczxcz 于 2019-4-4 20:29 编辑
"ip address" 不同的系统显示不一样。忘了BAT下要转义了。
下面的 默认WIN7+, bat运行。- @echo off
- powershell -Execution RemoteSigned Get-NetIPConfiguration ^| ?{ $_.InterfaceAlias -NotMatch 'VMnet' } ^| %%{ 'IP='+$_.IPv4Address; '网关='+$_.IPv4DefaultGateway.NextHop}
复制代码
不知道是不是你想要的。排除VMware虚拟机和IPV6。
作者: fsshzhj 时间: 2019-4-4 16:44
回复 2# xczxczxcz
原来在XP下可以运行的,现在运行出错,应该是你所说的操作系统不同的原因。
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |