Jak uruchomić polecenie netsh systemu Windows przy użyciu Pythona?

Próbuję uruchomić następujące polecenie netsh w systemie Windows 7, jednak zwraca niepoprawną składnię

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
>>>

Co jest nie tak?

questionAnswers(1)

yourAnswerToTheQuestion