以下は私の Iron Python スクリプトで、すべてのシステム レベル コマンド (get-process など) で正常に動作しますが、exchange コマンドを呼び出すために MS-Exchange スナップインを追加したいと考えています。誰かが私を助けることができますか?
def RunScript(スクリプト):
runspace = RunspaceFactory.CreateRunspace()
runspace.Open()
pipeline = runspace.CreatePipeline()
cache = System.IO.Path.GetTempFileName()
pipeline.Commands.AddScript(script)
pipeline.Commands.Add("Out-String")
results = pipeline.Invoke()
pickled = []
for thing in results:
pickled.append(thing.ToString())
return pickled
ありがとうスーザン