我正在尝试在 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)