最近想做一个小工具用于禁用启用和设置网卡成静态或者将网卡设置成动态获取,因为其他原因,网卡的名字改成了数字2,这是后发现用netsh无法设置静态地址和设置动态获取
def set_static_ip(adapter_name, ip_address, subnet_mask, gateway):
subprocess.Popen('netsh interface ip set address "{}" static {} {} {} '.format(adapter_name, ip_address, subnet_mask, gateway)
set_static_ip("2", "192.168.1.100", "255.255.255.0", "192.168.1.1")
不知道如何解决这个问题