参考[这篇文章](https://www.windowscentral.com/how-change-priority-order-network-adapters-windows-10) 重置了几个网络适配器的优先顺序。
Powershell命令:
```
> Get-NetIPInterface
> Set-NetIPInterface -InterfaceIndex 30 -AutomaticMetric enabled
```
根据文章描述,也可以手动修改每个网络适配器对应的Metrics (跃点数),数值越低则优先级越高。
评论