Recebo a mensagem Common Language Runtime detected an invalid program. ao tentar chamar o seguinte script powershell no c# . Tem alguma ideia do que se trata?
string text = System.IO.File.ReadAllText(@“C:\Users\C5T9\Desktop\AutomatingSoftwareInstallation\CiscoJabberSetup\TeamViewer.ps1”);
using (PowerShell PowerShellInstance = PowerShell.Create())
{
PowerShellInstance.AddScript(text);
PowerShellInstance.Invoke();
}