如何在Visual Studio 2015的C#项目中运行简单的Powershell命令?

时间:2018-07-05 10:37:50

标签: c# visual-studio powershell

我有一个简单的单行Powershell命令,该命令可解除阻止特定文件夹中的所有dll。我想从VS 2015中的C#main()方法运行此命令。

我尝试使用Runspace,但是VS无法识别它。

我该怎么做?我可能必须安装的所有扩展程序吗?

2 个答案:

答案 0 :(得分:0)

尝试以下操作,Process.Start应该根据需要进行操作。

System.Diagnostics.Process.Start("Path/To/Powershell/Script.ps1");

答案 1 :(得分:0)

首先,我喜欢这个问题。我是PowerShell的忠实粉丝,几乎每天都想了解有关PowerShell的新知识。

现在,答案。

这就是我要做的。首先,我将打开PowerShell,而不会显示该窗口。然后,我将运行Get-Process命令,因为它提供了一些不错的信息。最后,我将结果打印到屏幕上,然后等待用户按任意键来验证他们是否看到了响应。 (如果要在字符串中使用它,请查看StringBuilder。)这基本上可以满足您的要求;运行一个简单的命令,并获取输出。

这是代码。

using System;
using System.Diagnostics;

namespace powershellrun {
    public class program {
        public static void Main(string[] args) {
            //Open up PowerShell with no window
            Process ps = new Process();
            ProcessStartInfo psinfo = new ProcessStartInfo();
            psinfo.FileName = "powershell.exe";
            psinfo.WindowStyle = ProcessWindowStyle.Hidden;
            psinfo.UseShellExecute = false;
            psinfo.RedirectStandardInput = true;
            psinfo.RedirectStandardOutput = true;
            ps.StartInfo = psinfo;
            ps.Start();
            //Done with that.

            //Run the command.
            ps.StandardInput.WriteLine("Get-Process");
            ps.StandardInput.Flush();
            ps.StandardInput.Close();
            ps.WaitForExit();
            //Done running it.

            //Write it to the console.
            Console.WriteLine(ps.StandardOutput.ReadToEnd());
            //Done with everything.

            //Wait for the user to press any key.
            Console.ReadKey(true);
        }
    }
}

这应该为您完成工作。