返回列表 发帖

[系统相关] 怎样禁用所有网卡的ipv6

本帖最后由 小白龙 于 2025-2-14 17:07 编辑

我想禁用所有网卡的ipv6, 用wmic或netsh都可以, 下面是gpt的答案, 没效果, 不想使用powershell命令
  1. netsh interface ipv6 set state disabled
复制代码
powershell代码如下:
  1. Get-NetAdapterBinding -ComponentID ms_tcpip6 | Disable-NetAdapterBinding -ComponentID ms_tcpip6
复制代码

返回列表