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