我试图学习如何在 C# 中使用 powershell 我正在遵循本教程
但是,当我运行它时,我收到此错误:
未处理的异常。System.InvalidProgramException:公共语言运行时检测到无效程序。在 C:\Users\ncox\source\repos\desktopAdmin365\Program.cs 中的 DesktopAdmin365.Program.Main(String[] args) 处的 System.Management.Automation.PowerShell.Create() 处:第 11 行
C:\Users\ncox\source\repos\desktopAdmin365\bin\Debug\netcoreapp3.0\desktopAdmin365.exe(进程17464)退出,代码为-532462766。
我确信在包含解决方案资源管理器中的引用/依赖项时我错过了一些东西,但我没有运气通过谷歌找出哪一个
这是代码
using System;
using System.Management.Automation;
using System.Collections.ObjectModel;
namespace desktopAdmin365
{
class Program
{
static void Main(string[] args)
{
using (PowerShell PowerShellInstance = PowerShell.Create())
{
PowerShellInstance.AddScript("param($param1) $d = get-date; $s = 'test string value'; " +
"$d; $s; $param1; get-service");
}
}
}
}
烙印99