如何从相对路径在C#中运行PowerShell脚本?

时间:2015-08-04 23:17:32

标签: c# powershell

我正在尝试从我的C#应用​​程序运行PowerShell脚本。我知道如何用绝对路径这样做:

    using (PowerShell pshell = PowerShell.Create())
    {
        pshell.AddScript( @"C:\Path\To\Webapp\psScript.ps1" );
        pshell.Invoke();
    }

我不知道怎么做是使用相对路径。我的psScript.ps1与Visual Studio项目位于同一目录中,我想使用相对路径(例如./psScript.ps1),这样当我将项目发布/导出到不同的计算机时,脚本的路径不会失效

Sooo,如何在PowerShell.AddScript()方法中使用相对路径?任何帮助将不胜感激!

我看了这里,但这不回答我的问题: PowerShell: Run command from script's directory

2 个答案:

答案 0 :(得分:4)

使用此:

using (PowerShell pshell = PowerShell.Create())
    {
        string path=System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
        pshell.AddScript( path+"\\psScript.ps1" );
        pshell.Invoke();
    }

此路径始终相对于项目的根文件夹。

答案 1 :(得分:2)

将您的脚本添加到项目并将Copy to output directory属性设置为Copy alwaysCopy id newer