Notatka
Dostęp do tej strony wymaga autoryzacji. Może spróbować zalogować się lub zmienić katalogi.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
W tym przykładzie pokazano, jak używać klasy System.Management.Automation.PowerShell, aby uruchomić get-process i sort-object polecenia cmdlet synchronicznie. Polecenie cmdlet Get-Process zwraca obiekty System.Diagnostics.Process dla każdego procesu uruchomionego na komputerze lokalnym, a Sort-Object sortuje obiekty na podstawie ich właściwości System.Diagnostics.Process.Id*. Wyniki tych poleceń są wyświetlane przy użyciu kontrolki System.Windows.Forms.DataGridView.
Wymagania
Ten przykład wymaga programu Windows PowerShell 2.0.
Demonstruje
W tym przykładzie pokazano następujące elementy.
Tworzenie obiektu System.Management.Automation.PowerShell do uruchamiania poleceń.
Dodawanie poleceń do potoku obiektu System.Management.Automation.PowerShell.
Synchronicznie uruchamiane polecenia.
Za pomocą kontrolki System.Windows.Forms.DataGridView wyświetlać dane wyjściowe poleceń w aplikacji Windows Forms.
Przykład
Ten przykład uruchamia polecenia cmdlet Get-Process i Sort-Object synchronicznie w domyślnej przestrzeni uruchomieniowej dostarczonej przez program Windows PowerShell. Dane wyjściowe są wyświetlane w formularzu przy użyciu kontrolki System.Windows.Forms.DataGridView.
namespace Microsoft.Samples.PowerShell.Runspaces
{
using System;
using System.Collections;
using System.Collections.ObjectModel;
using System.Management.Automation;
using System.Management.Automation.Runspaces;
using System.Windows.Forms;
using PowerShell = System.Management.Automation.PowerShell;
/// <summary>
/// This class contains the Main entry point for this host application.
/// </summary>
internal class Runspace02
{
/// <summary>
/// This method creates the form where the output is displayed.
/// </summary>
private static void CreateForm()
{
Form form = new Form();
DataGridView grid = new DataGridView();
form.Controls.Add(grid);
grid.Dock = DockStyle.Fill;
// Create a PowerShell object. Creating this object takes care of
// building all of the other data structures needed to run the command.
using (PowerShell powershell = PowerShell.Create())
{
powershell.AddCommand("Get-Process").AddCommand("Sort-Object").AddArgument("ID");
if (Runspace.DefaultRunspace == null)
{
Runspace.DefaultRunspace = powershell.Runspace;
}
Collection<PSObject> results = powershell.Invoke();
// The generic collection needs to be re-wrapped in an ArrayList
// for data-binding to work.
ArrayList objects = new ArrayList();
objects.AddRange(results);
// The DataGridView will use the PSObjectTypeDescriptor type
// to retrieve the properties.
grid.DataSource = objects;
}
form.ShowDialog();
}
/// <summary>
/// This sample uses a PowerShell object to run the Get-Process
/// and Sort-Object cmdlets synchronously. Windows Forms and
/// data binding are then used to display the results in a
/// DataGridView control.
/// </summary>
/// <param name="args">The parameter is not used.</param>
/// <remarks>
/// This sample demonstrates the following:
/// 1. Creating a PowerShell object.
/// 2. Adding commands and arguments to the pipeline of
/// the PowerShell object.
/// 3. Running the commands synchronously.
/// 4. Using a DataGridView control to display the output
/// of the commands in a Windows Forms application.
/// </remarks>
private static void Main(string[] args)
{
Runspace02.CreateForm();
}
}
}