通过C#执行PowerShell脚本
问题描述:
我需要执行以下脚本: Get-MailboxDatabase -Status |选择服务器名称,名称,数据库大小通过C#执行PowerShell脚本
我尝试了一些Powershell和Command类的解决方案,但它们不起作用。我收到的错误: 值参数不能为空。
答
我认为这会做你要找的内容:
private string RunLocalExchangePowerShell(string script)
{
// create the runspace and load the snapin
RunspaceConfiguration rsConfig = RunspaceConfiguration.Create();
PSSnapInException snapInException = null;
Runspace runSpace = RunspaceFactory.CreateRunspace(rsConfig);
runSpace.Open();
rsConfig.AddPSSnapIn("Microsoft.Exchange.Management.PowerShell.E2010", out snapInException);
Pipeline pipeLine = runSpace.CreatePipeline();
// load the script and convert the output to a string
pipeLine.Commands.AddScript(script);
pipeLine.Commands.Add("out-string");
// get the results
Collection<PSObject> results;
results = pipeLine.Invoke();
// loop through the results and build the output
StringBuilder sb = new StringBuilder();
foreach (PSObject obj in results)
{
sb.AppendLine(obj.ToString());
}
// close the pipeline and runspace
pipeLine.Dispose();
runSpace.Close();
return sb.ToString();
}
用法示例:
Console.WriteLine(prog.RunLocalExchangePowerShell("Get-MailboxDatabase -Status | select ServerName,Name,DatabaseSize"));
你是如何初始化PSEXEC变量? – 2012-08-04 06:31:56
@TimurYaroshenko对不起,我编辑了上述内容并进行了测试。 – 2012-08-04 14:28:11
非常感谢你;-) – 2012-08-04 20:44:09