标题: [网络连接] 批处理如何获取无线网络连接的名称并设置ip、dns等 [打印本页]
作者: winsfly 时间: 2016-10-31 16:51 标题: 批处理如何获取无线网络连接的名称并设置ip、dns等
本帖最后由 pcl_test 于 2016-10-31 21:42 编辑
办公室电脑都是无线连接的,全部需要设置固定ip防止冲突和arp病毒等,但是无线网卡的名称有的是无线网络连接1或者无线网络连接2等,批处理可以自动判定无线网络连接名字并设定ip dns等详细信息。
作者: GNU 时间: 2016-10-31 17:53
- @echo off
- for /f "delims=" %%i in ('powershell -c "Get-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Network\*\*\Connection" -ErrorAction SilentlyContinue | Where-Object {$_.MediaSubType -eq 2} | Select-Object -Property Name"') do (
- set str=%%i
- )
- echo,%str%
- pause
复制代码
作者: pcl_test 时间: 2016-10-31 21:41
- netsh interface show interface
- netsh wlan show interfaces
- wmic nic get NetConnectionID /value
复制代码
作者: GNU 时间: 2016-11-1 09:10
- @echo off
- for /f "tokens=2 delims=:" %%i in ('netsh wlan show interfaces ^| findstr "Name.*:"') do (
- set str=%%i
- )
- set str=%str:~1%
- echo,%str%
- pause
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |