Voorbeeld Runspace05
In dit voorbeeld ziet u hoe u een module toevoegt aan een System.Management.Automation.Runspaces.Initialsessionstate-object, zodat de cmdlet van de module beschikbaar is wanneer de runspace wordt geopend. De module biedt een Get-Proc-cmdlet (gedefinieerd door het GetProcessSample01-voorbeeld) die synchroon wordt uitgevoerd met behulp van een System.Management.Automation.Powershell-object.
Vereisten
Voor dit voorbeeld is Windows PowerShell 2.0 vereist.
Demonstreert
In dit voorbeeld wordt het volgende gedemonstreerd.
Een System.Management.Automation.Runspaces.Initialsessionstate-object maken.
Voeg de module toe aan het object System.Management.Automation.Runspaces.Initialsessionstate.
Een System.Management.Automation.Runspaces.Runspace-object maken dat gebruikmaakt van het object System.Management.Automation.Runspaces.Initialsessionstate.
Een System.Management.Automation.Powershell-object maken dat gebruikmaakt van de runspace.
Voeg de cmdlet get-proc van de module toe aan de pijplijn van het object System.Management.Automation.Powershell.
De opdracht synchroon uitvoeren.
Eigenschappen extraheren uit de System.Management.Automation.PSObject-objecten die worden geretourneerd door de opdracht .
Voorbeeld
In dit voorbeeld wordt een runspace gemaakt die gebruikmaakt van een System.Management.Automation.Runspaces.Initialsessionstate-object om de elementen te definiƫren die beschikbaar zijn wanneer de runspace wordt geopend. In dit voorbeeld wordt een module toegevoegd die een Get-Proc cmdlet aan de initiƫle sessietoestand definieert.
namespace Microsoft.Samples.PowerShell.Runspaces
{
using System;
using System.Collections.ObjectModel;
using System.Management.Automation;
using System.Management.Automation.Runspaces;
using PowerShell = System.Management.Automation.PowerShell;
/// <summary>
/// This class contains the Main entry point for this host application.
/// </summary>
internal class Runspace05
{
/// <summary>
/// This sample shows how to define an initial session state that is
/// used when creating a runspace. The sample invokes a command from
/// a Windows PowerShell snap-in that is present in the console file.
/// </summary>
/// <param name="args">The parameter is not used.</param>
/// <remarks>
/// This sample assumes that user has coppied the GetProcessSample01.dll
/// that is produced by the GetProcessSample01 sample to the current
/// directory.
/// This sample demonstrates the following:
/// 1. Creating a default initial session state.
/// 2. Adding a snap-in to the initial session state.
/// 3. Creating a runspace that uses the initial session state.
/// 4. Creating a PowerShell object that uses the runspace.
/// 5. Adding the snap-in's get-proc cmdlet to the PowerShell object.
/// 6. Using PSObject objects to extract and display properties from
/// the objects returned by the cmdlet.
/// </remarks>
private static void Main(string[] args)
{
// Create the default initial session state. The default initial
// session state contains all the elements provided by Windows
// PowerShell.
InitialSessionState iss = InitialSessionState.CreateDefault();
PSSnapInException warning;
iss.ImportPSSnapIn("GetProcPSSnapIn01", out warning);
// Create a runspace. Notice that no PSHost object is supplied to the
// CreateRunspace method so the default host is used. See the Host
// samples for more information on creating your own custom host.
using (Runspace myRunSpace = RunspaceFactory.CreateRunspace(iss))
{
myRunSpace.Open();
// Create a PowerShell object.
using (PowerShell powershell = PowerShell.Create())
{
// Add the snap-in cmdlet and specify the runspace.
powershell.AddCommand("GetProcPSSnapIn01\\get-proc");
powershell.Runspace = myRunSpace;
// Run the cmdlet synchronously.
Collection<PSObject> results = powershell.Invoke();
Console.WriteLine("Process HandleCount");
Console.WriteLine("--------------------------------");
// Display the results.
foreach (PSObject result in results)
{
Console.WriteLine(
"{0,-20} {1}",
result.Members["ProcessName"].Value,
result.Members["HandleCount"].Value);
}
}
// Close the runspace to release any resources.
myRunSpace.Close();
}
System.Console.WriteLine("Hit any key to exit...");
System.Console.ReadKey();
}
}
}
Zie ook
Feedback
Feedback verzenden en weergeven voor