我会考虑这样做的方式是使用一段 PowerShell 脚本,然后在 C# 中“播放”输出。
如果您添加对以下项目的引用,您将能够与 C# 中的 PowerShell 脚本进行交互:
系统管理自动化
然后使用以下using语句深入研究 this 的特性并与之交互:
using System.Collections.ObjectModel;
using System.Management.Automation;
using System.Management.Automation.Runspaces
下面的脚本将创建一个不错的 sub,它将接受一个 PowerShell 命令并返回一个可读的字符串,每个项目(在本例中为一个角色)添加为一个新行:
private string RunScript(string scriptText)
{
// create a Powershell runspace then open it
Runspace runspace = RunspaceFactory.CreateRunspace();
runspace.Open();
// create a pipeline and add it to the text of the script
Pipeline pipeline = runspace.CreatePipeline();
pipeline.Commands.AddScript(scriptText);
// format the output into a readable string, rather than using Get-Process
// and returning the system.diagnostic.process
pipeline.Commands.Add("Out-String");
// execute the script and close the runspace
Collection<psobject /> results = pipeline.Invoke();
runspace.Close();
// convert the script result into a single string
StringBuilder stringBuilder = new StringBuilder();
foreach (PSObject obj in results)
{
stringBuilder.AppendLine(obj.ToString());
}
return stringBuilder.ToString();
}
然后,您可以将以下 PowerShell 命令传递给脚本并接收输出,如下所示:
RunScript("Import-module servermanager | get-windowsfeature");
或者,您可以从 C# 脚本运行此 PowerShell 命令,然后在脚本完成处理后从 C# 读取输出文本文件:
import-module servermanager | get-windowsfeature > C:\output.txt
希望这可以帮助!