/// <summary> /// Invokes an array of scripts using the specified powershell instance. /// </summary> /// <param name="powershell">The powershell instance that executes the scripts.</param> /// <param name="scripts">An array of script to execute.</param> public static Collection <PSObject> InvokeBatchScript( this PowerShell powershell, params string[] scripts) { if (powershell == null) { throw new ArgumentNullException("powershell"); } powershell.Commands.Clear(); foreach (string script in scripts) { Console.Error.WriteLine(script); powershell.AddScript(script); } Collection <PSObject> results = powershell.Invoke(); powershell.DumpStreams(); return(results); }