このサンプルでは、System.Management.Automation.Runspaces.InitialSessionState オブジェクトにモジュールを追加して、実行空間を開いたときにモジュールが読み込まれるようにする方法を示します。 このモジュールには、System.Management.Automation.PowerShell オブジェクトを使用して同期的に実行される Get-Proc コマンドレット (GetProcessSample02 サンプルで定義) が用意されています。
必要条件
このサンプルには、Windows PowerShell 2.0 が必要です。
対象
このサンプルでは、次の例を示します。
System.Management.Automation.Runspaces.InitialSessionState オブジェクトの作成。
System.Management.Automation.Runspaces.InitialSessionState オブジェクトにモジュールを追加します。
System.Management.Automation.Runspaces.InitialSessionState オブジェクトを使用する System.Management.Automation.Runspaces.Runspace オブジェクトを作成します。
実行空間を使用する System.Management.Automation.PowerShell オブジェクトを作成する。
System.Management.Automation.PowerShell オブジェクトのパイプラインにモジュールの Get-Proc コマンドレットを追加します。
コマンドを同期的に実行する。
System.Management.Automation.PSObject からプロパティを抽出、コマンドによって返されるオブジェクトです。
例
このサンプルでは、System.Management.Automation.Runspaces.InitialSessionState オブジェクトを使用して、実行空間を開くときに使用できる要素を定義する実行空間を作成します。 このサンプルでは、Get-Proc コマンドレットを定義するモジュールが初期セッション状態に追加されます。
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 Runspace06
{
/// <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 binary module that is loaded by the initial session state.
/// </summary>
/// <param name="args">Parameter not used.</param>
/// <remarks>
/// This sample assumes that user has copied the GetProcessSample02.dll
/// that is produced by the GetProcessSample02 sample to the current
/// directory.
/// This sample demonstrates the following:
/// 1. Creating a default initial session state.
/// 2. Adding a module 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 module's Get-Proc cmdlet to the PowerShell object.
/// 6. Running the command synchronously.
/// 7. 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 and add the module.
InitialSessionState iss = InitialSessionState.CreateDefault();
iss.ImportPSModule(new string[] { @".\GetProcessSample02.dll" });
// 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 cmdlet and specify the runspace.
powershell.AddCommand(@"GetProcessSample02\Get-Proc");
powershell.Runspace = myRunSpace;
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();
}
}
}
こちらもご覧ください
Windows PowerShell ホスト アプリケーション の作成の
PowerShell