0

我正在尝试在 windows powershell 上运行以下 python 脚本,这会引发以下错误

错误:

术语“x86”未被识别为 cmdlet、函数、脚本文件或可运行程序的名称。检查名称的拼写,或者如果路径包含 d,请验证路径是否正确并重试。

脚本:

import os
import sys

Watchdog_config = 'C:\\Program Files (x86)\\Common Files\\ibm\\icc\\cimom\\data\\wmia.properties'
command1 = "PowerShell -Command \"& {(cat "+Watchdog_config+" )|%{$_ -replace {\"off\",\"on\"}}|set "+Watchdog_config+"}\""

os.system(command1)
4

1 回答 1

0

你能试一下吗 :

Watchdog_config = '\"C:\\Program Files (x86)\\Common Files\\ibm\\icc\\cimom\\data\\wmia.properties\"'

我对 python 不满意,我只想用双引号将路径括起来""

于 2013-06-10T06:58:27.687 回答