我有一个很长的 powershell 脚本,需要从 python 脚本执行。当我从命令行运行它时,powershell 脚本工作正常,但当我从 python 运行它时失败。
我已将我的 powershell 脚本简化为以下代码,该代码重现了该问题。
Powershell脚本:
import-module WebAdministration
Add-Type -Path C:\Windows\System32\inetsrv\Microsoft.Web.Administration.dll
Set-WebConfigurationProperty '/system.webServer/proxy' -Name "enabled" -Value "true"
Python脚本:
import subprocess
print subprocess.check_output("powershell [pathToMyPowershellScript]");
当我从 cmd.exe 运行 powershell 脚本时,它工作正常并且不产生任何输出。当我运行 python 脚本时,它会产生以下错误:
Set-WebConfigurationProperty : Retrieving the COM class factory for component
with CLSID {688EEEE5-6A7E-422F-B2E1-6AF00DC944A6} failed due to the following
error: 80040154
Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)).
At [pathToMyPowershellScript]:3 char:1
+ Set-WebConfigurationProperty '/system.webServer/proxy' -Name "enabled" -Value "t ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo
: NotSpecified: (:) [Set-WebConfigurationProperty], COMException
+ FullyQualifiedErrorId : System.Runtime.InteropServices.COMException,
Microsoft.IIs.PowerShell.Provider.SetConfigurationPropertyCommand
我在 Windows 7 Professional (x64) 上使用 Python 2.7 和 Powershell 1.0 运行 IIS 7.5 有什么想法吗?