如何从C#运行PowerShell脚本

 我来答
某某知识博士
推荐于2017-11-27 · TA获得超过1.4万个赞
知道大有可为答主
回答量:3522
采纳率:85%
帮助的人:1182万
展开全部
在C#中调用powershell脚本,需要引用的namespace如下:

using System.Management.Automation;
using System.Management.Automation.Runspaces;

添加System.Management.Automation.dll的引用,需要使用浏览,如果不知道位置,可以先在本机查找下。

代码如下:

1 //RunPowershell(@".\x.ps1", "");
2 private Collection<PSObject> RunPowershell(string filePath, string parameters)
3 {
4 RunspaceConfiguration runspaceConfiguration = RunspaceConfiguration.Create();
5 Runspace runspace = RunspaceFactory.CreateRunspace(runspaceConfiguration);
6 runspace.Open();
7 RunspaceInvoke scriptInvoker = new RunspaceInvoke(runspace);
8 Pipeline pipeline = runspace.CreatePipeline();
9 Command scriptCommand = new Command(filePath);
10 Collection<CommandParameter> commandParameters = new Collection<CommandParameter>();
11
12 string[] tempParas = parameters.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
13 for (int i = 0; i < tempParas.Length; i += 2)
14 {
15 CommandParameter commandParm = new CommandParameter(tempParas[i], tempParas[i + 1]);
16 commandParameters.Add(commandParm);
17 scriptCommand.Parameters.Add(commandParm);
18 }
19
20 pipeline.Commands.Add(scriptCommand);
21 Collection<PSObject> psObjects;
22 psObjects = pipeline.Invoke();
23
24 if (pipeline.Error.Count > 0)
25 {
26 throw new Exception("脚本执行失败");
27 }
28
29 runspace.Close();
30
31 return psObjects;
32 }
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式