0

我是 c# 中的新 powershell 脚本。我有一个 powershell 脚本文件 ps.ps1 和 powershell 设置文件 ConsoleSettings.psc1

C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe -psconsolefile "D:\e\ConsoleSettings.psc1" -noexit -command ". 'D:\e\ps.ps1'"

运行它并获得“

Get-RST -SearchRoot 'erd/user' -PasswordNeverExpires:$false -PasswordNotChangedFor 60 -enabled

我的函数结果正确。

现在,我想在 c# 中得到这个结果。我的代码是;

    private void button1_Click(object sender, EventArgs e)
        {
            RunScript(LoadScript(@"d:\e\ps.ps1"));
        }


        private string RunScript(string scriptText)
        {
            PSConsoleLoadException x = null; ;
            RunspaceConfiguration rsconfig = RunspaceConfiguration.Create(@"d:\e\ConsoleSettings.psc1", out x);
            Runspace runspace = RunspaceFactory.CreateRunspace(rsconfig);
            runspace.Open();
            RunspaceInvoke runSpaceInvoker = new RunspaceInvoke(runspace);
            runSpaceInvoker.Invoke("Set-ExecutionPolicy Unrestricted");
            Pipeline pipeline = runspace.CreatePipeline();
            pipeline.Commands.AddScript(scriptText);

            pipeline.Commands.Add("Get-RST -SearchRoot 'erd/user' -PasswordNeverExpires:$false -PasswordNotChangedFor 60   -enabled");            
Collection<PSObject> results = pipeline.Invoke();

            runspace.Close();
            StringBuilder stringBuilder = new StringBuilder();
            foreach (PSObject obj in results)
            {
                stringBuilder.AppendLine(obj.ToString());
            }
            return stringBuilder.ToString();
        }

        private string LoadScript(string filename)
        {
            try
            {
                using (StreamReader sr = new StreamReader(filename))
                {
                    StringBuilder fileContents = new StringBuilder();
                    string curLine;
                    while ((curLine = sr.ReadLine()) != null)
                    {
                        fileContents.Append(curLine + "\n");
                    }
                    return fileContents.ToString();
                }
            }
            catch (Exception e)
            {
                string errorText = "The file could not be read:";
                errorText += e.Message + "\n";
                return errorText;
            }

        }

然后我有一个错误:术语“Get-RST -SearchRoot 'erd/user' -PasswordNeverExpires:$false -PasswordNotChangedFor 60 -enabled”未被识别为 cmdlet、函数、脚本文件或可运行程序的名称。检查名称的拼写,或者如果包含路径,请验证路径是否正确并重试。

如何解决此问题,或如何使用配置文件调用 powershell 脚本,参数如 (Get-RST -SearchRoot 'erd/user' -PasswordNeverExpires:$false -PasswordNotChangedFor 60 -enabled) 在 c#

请帮我...

4

1 回答 1

0

您正在将命令行添加为命令而不是脚本。命令用于诸如 cmdlet 或不带参数的函数之类的东西。您将使用其他方法来添加参数。一个简单的解决方案是AddScript再次使用。

pipeline.AddScript("Get-RST -SearchRoot 'erd/user' -PasswordNeverExpires:$false -PasswordNotChangedFor 60   -enabled");   
于 2012-08-22T19:19:32.020 回答