小编Lec*_*ode的帖子

使用命令行在 Windows 中显示禁用的网络接口?(移动宽带和常规连接)

有几种方法可以通过命令行列出网络接口。例如:

netsh interface show interface
netsh interface ip show interfaces
ipconfig |findstr "adapter"
Run Code Online (Sandbox Code Playgroud)

对于移动宽带连接:

netsh mbn show interfaces
Run Code Online (Sandbox Code Playgroud)

只要它们被启用,所有这些都会列出网络接口。如果您禁用一个接口(即'netsh interface set interface "interfaceName" admin=disable'),它将不再与这些命令一起列出。

我的问题是:您如何列出已禁用的接口?适用于移动宽带连接和常规连接的东西会很棒。

networking windows command-line mobile-broadband network-interface

18
推荐指数
2
解决办法
13万
查看次数