在C#中执行Powershell脚本失败

时间:2018-11-13 10:26:25

标签: c# azure powershell

我的powershell脚本无法运行,并出现以下错误:

Code 在这一行:-

“ Import-AzureRmContext -Path C:\ profile.json;”

如果我右键单击该文件并“使用powershell运行”,则脚本运行良好。

如果我使用PowerShellInstance运行,则会收到相同的错误:

enter image description here

1 个答案:

答案 0 :(得分:0)

在另一个StackOverflow帖子中找到了此代码。您可以使用它来通过命令提示符执行Powershell脚本。使用下面的函数并调用它对我有用:

ExecuteCommand("powershell -command \" & C:\\PowershellFileName.ps1\"");

public void ExecuteCommand(string Command)
{
    ProcessStartInfo ProcessInfo;
    Process Process;

    ProcessInfo = new ProcessStartInfo("cmd.exe", "/K " + Command);
    ProcessInfo.CreateNoWindow = true;
    ProcessInfo.UseShellExecute = true;

    Process = Process.Start(ProcessInfo);
}