标签: c# powershell pipeline cmdlets
Pipeline.Invoke中的System.Management.Automation.Runspaces是调用管道中的Commands集合中存在的cmdlet还是在C#中单独执行?
Pipeline.Invoke
System.Management.Automation.Runspaces
我在管道中添加了两个cmdlet,并命名为Pipeline.Invoke,但是第一个cmdlet的输出未被识别为管道输入,并且由于缺少第二个cmdlet的必填字段而出现错误。
我们能否像在PowerShell console A | B中一样实现C#中的管道调用?
console A | B