在通过C#函数执行时尝试将参数或参数列表传递给PowerShell脚本路径。
我正在使用C#函数通过一个使用System.Management.Automation库调用powershell命令的函数从脚本中获取详细信息列表。我正在传递文件路径,因此该脚本在不需要任何参数的情况下可以很好地工作,但是当我需要传递它们时,它将给出User-UnHandled Exeption。
scriptPath变量中的值:
C:\Users\<username>\source\repos\MyProject\Shell\Get-SDC.ps1 'Test - Group'
我的功能:
private string PowerShellExecutorStr(string scriptPath)
{
string outString = "";
var shell = PowerShell.Create();
shell.Commands.AddCommand(scriptPath);
var results = shell.Invoke();
if (results.Count > 0)
{
var builder = new StringBuilder();
foreach (var psObj in results)
{
builder.Append(psObj.BaseObject.ToString() + "\r\n");
}
outString = Server.HtmlEncode(builder.ToString());
}
shell.Dispose();
return outString;
}
脚本:
param($GroupName)
<Get-ADGroup Command to fetch Details of the Group using $GroupName as Parameter>
outString需要在将参数传递给它时获取PowerShell脚本的输出。
答案 0 :(得分:1)
var shell = PowerShell.Create();
shell.Commands.AddCommand(scriptPath)
.AddParameter("ParamName", "ParamValue");
var results = shell.Invoke();
以上等同于以下PowerShell:
PS> scriptPath -ParamName ParamValue
答案 1 :(得分:0)
我通过Archer链接发现的另一种方法是添加参数
private string PowerShellExecutorStr(string script, string arg)
{
string outString = "";
var shell = PowerShell.Create();
shell.Commands.AddCommand(script);
shell.Commands.AddArgument(arg); // <----- Using this statement
var results = shell.Invoke();
……rest of the code
}