MSFT_NetAdapter修改网卡名
2021-06-21 21:05
标签:pre int .com strong roo class htm and shel 修改网卡名,使用powershell命令即可,如果在多种语言环境,就要考虑编码问题。有什么方法可以省掉编码转换呢 上面命令在代码中调用,需要考虑Name编码,使用wmi接口可以不用 MSFT_NetAdapter修改网卡名 标签:pre int .com strong roo class htm and shel 原文地址:http://www.cnblogs.com/yongqing/p/7181302.html
Rename-NetAdapter -Name "current_name" -NewName "new_name"
conn = wmi.WMI(moniker="//./root/StandardCimv2")
net_adapters = conn.MSFT_NetAdapter(HardwareInterface=True)
net_adapters[0].Rename("newname")
文章标题:MSFT_NetAdapter修改网卡名
文章链接:http://soscw.com/index.php/essay/97078.html