2

我正在尝试在 Windows 7 上运行以下 netsh 命令,但是它返回的语法不正确

Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.system("netsh interface ipv4 set interface ""Conexão de Rede sem Fio"" metric=1")
The syntax of the file name, directory name or volume label is incorrect.


1
>>>

怎么了?

4

1 回答 1

4

os.system是一个非常古老的选择,并不推荐。

相反,您应该考虑subprocess.call()or subprocess.Popen()

以下是如何使用它们:

如果你不关心输出,那么:

import subprocess
...
subprocess.call('netsh interface ipv4 set interface ""Wireless Network" metric=1', shell=True)

如果您确实关心输出,那么:

netshcmd=subprocess.Popen('netsh interface ipv4 set interface ""Wireless Network" metric=1', shell=True, stderr=subprocess.PIPE, stdout=subprocess.PIPE )
output, errors =  netshcmd.communicate()
if errors: 
   print "WARNING: ", errors
 else:
   print "SUCCESS ", output
于 2012-09-12T05:46:23.323 回答