有没有显示活动以太网连接名称的命令?
Is there any command to display active Ethernet connection name?
我需要显示连接的以太网名称。
我使用以下命令获取 WLAN 连接网络 (Wi-Fi)。
C:\Users\User>netsh wlan show interface | findstr /i "SSID" name
SSID : HOME
BSSID : bc:62:d2:4a:a1:48
如果我接下来 运行 以下命令,则会输出一条错误消息:
C:\Users\User>netsh lan show interface command
The Wired AutoConfig Service (dot3svc) is not running.
但是在我启动服务后,我仍然没有得到活动连接的以太网名称。
C:\Users\User>netsh lan show interface command
There is 1 interface on the system:
Name : Ethernet
Description : Realtek PCIe GbE Family Controller
GUID : e901d916-86f4-4070-9941-47a9a325537a
Physical Address : 98-E7-43-0F-8F-84
State : Connected. Network does not support authentication.
谁能帮我在有线 LAN 连接上获取以太网名称 Home
?
直接在 cmd 中输入的以下命令应在 Windows 8 / 服务器上显示已连接网络配置文件的名称,无论它们是有线还是无线2012 操作系统或更新版本。
For /F Tokens^=6^ Delims^=^" %G In ('%SystemRoot%\System32\wbem\WMIC.exe /NameSpace:\Root\StandardCimv2 Path MSFT_NetConnectionProfile Where "IPv4Connectivity='4'" Get Name /Format:MOF 2^>NUL') Do @Echo %G
来自 batch-file,对于 GUI 双击,它看起来更像这样:
@(For /F Tokens^=6^ Delims^=^" %%G In ('%SystemRoot%\System32\wbem\WMIC.exe
/NameSpace:\Root\StandardCimv2 Path MSFT_NetConnectionProfile Where
"IPv4Connectivity='4'" Get Name /Format:MOF 2^>NUL') Do @Echo %%G) & Pause
我需要显示连接的以太网名称。
我使用以下命令获取 WLAN 连接网络 (Wi-Fi)。
C:\Users\User>netsh wlan show interface | findstr /i "SSID" name
SSID : HOME
BSSID : bc:62:d2:4a:a1:48
如果我接下来 运行 以下命令,则会输出一条错误消息:
C:\Users\User>netsh lan show interface command
The Wired AutoConfig Service (dot3svc) is not running.
但是在我启动服务后,我仍然没有得到活动连接的以太网名称。
C:\Users\User>netsh lan show interface command
There is 1 interface on the system:
Name : Ethernet
Description : Realtek PCIe GbE Family Controller
GUID : e901d916-86f4-4070-9941-47a9a325537a
Physical Address : 98-E7-43-0F-8F-84
State : Connected. Network does not support authentication.
谁能帮我在有线 LAN 连接上获取以太网名称 Home
?
直接在 cmd 中输入的以下命令应在 Windows 8 / 服务器上显示已连接网络配置文件的名称,无论它们是有线还是无线2012 操作系统或更新版本。
For /F Tokens^=6^ Delims^=^" %G In ('%SystemRoot%\System32\wbem\WMIC.exe /NameSpace:\Root\StandardCimv2 Path MSFT_NetConnectionProfile Where "IPv4Connectivity='4'" Get Name /Format:MOF 2^>NUL') Do @Echo %G
来自 batch-file,对于 GUI 双击,它看起来更像这样:
@(For /F Tokens^=6^ Delims^=^" %%G In ('%SystemRoot%\System32\wbem\WMIC.exe
/NameSpace:\Root\StandardCimv2 Path MSFT_NetConnectionProfile Where
"IPv4Connectivity='4'" Get Name /Format:MOF 2^>NUL') Do @Echo %%G) & Pause