【netsh命令】

netsh 是windows系统本身提供的功能强大的网络配置命令行工具。

REM 显示配置信息
netsh interface show interface
netsh interface ip show config
netsh interface ip show wins
netsh interface portproxy show all
REM 禁用本地连接
netsh interface set interface name=本地连接 admin=DISABLED connect=DISCONNECTED
REM 启用本地连接
netsh interface set interface name=本地连接 admin=ENABLED connect=CONNECTED

你可能感兴趣的:(windows)