如何在 Windows 10 上从命令行禁用/启用网络适配器?

如何在 Windows 10 上从命令行禁用/启用网络适配器?

目前,当我需要禁用/启用网络适配器时,我会执行以下步骤:

  1. 打开设备管理器(⊞ Win+ Rdevmgmt.mscEnter)。
  2. 正在搜索所需的网络适配器。
  3. 单击鼠标右键。
  4. 选择禁用(或者使能够) 从弹出菜单中: 在此处输入图片描述

如何从命令行禁用/启用网络适配器?

谢谢

答案1

打开命令提示符作为行政人员并输入以下命令行:

netsh interface set interface 'INTERFACE NAME' disable

参考:

如何在 Windows 10 上启用或禁用 Wi-Fi 和以太网网络适配器

答案2

打开电源外壳作为行政人员并运行以下命令:

Get-NetAdapter

Get-NetAdapter 将列出网络适配器属性

获取 NetAdapter 文档

按名称禁用网络适配器

Disable-NetAdapter -Name "Adapter Name" -Confirm:$false

禁用 NetAdapter 文档

按名称启用网络适配器

Enable-NetAdapter -Name "Adapter Name" -Confirm:$false

启用网络适配器文档

答案3

启用和禁用网络适配器的脚本

你好,使用以下脚本并将其保存为 .bat 文件。例如 (lan.bat) 请更改接口名称 cmd > netsh interface show interface(此命令将显示您的接口名称)

将以下脚本复制到记事本并将其保存为 .bat 文件,如上所述 @echo off (netsh interface show interface name="your interface name" | find /i "enabled")>nul if %errorlevel% equ 0 (netsh interface set interface name="your interface name" admin=disabled) else (netsh interface set interface name="your interface name" admin=enabled)

相关内容