我是.net的新手。将powerhell命令输出到控制台中会遇到问题,在c#中调用。
码:
PowerShell powershellCommand = PowerShell.Create();
powershellCommand.AddScript("get-process");
Collection<PSObject> results = powershellCommand.Invoke();
foreach (PSObject result in results)
{
Console.WriteLine(results);
}
Console.Read();
输出:System.Collections.ObjectModel.Collection`1 [System.Management.Automation.PSObject]
您正在迭代您的集合,但您不是在编写当前项目,而是整个集合。你必须写这个项目:
PowerShell powershellCommand = PowerShell.Create();
powershellCommand.AddScript("get-process");
Collection<PSObject> results = powershellCommand.Invoke();
foreach (PSObject result in results)
{
Console.WriteLine(result); //<-- result NOT results
}
Console.Read();