次の方法で共有


コマンドレット内からコマンドレットを呼び出す方法

この例では、別のコマンドレット内からコマンドレットを呼び出す方法を示します。これにより、開発中のコマンドレットに呼び出されたコマンドレットの機能を追加できます。 この例では、 コマンドレット Get-Process を呼び出して、ローカル コンピューターで実行されているプロセスを取得します。 コマンドレットの呼び Get-Process 出しは、次のコマンドと同じです。 このコマンドは、名前が文字 "a" から "t" で始まるすべてのプロセスを取得します。

Get-Process -name [a-t]

重要

System.Management.Automation.Cmdletクラスから直接派生したコマンドレットのみを呼び出すことができます。 System.Management.Automation.PSCmdletクラスから派生するコマンドレットを呼び出す必要があります。

コマンドレット内からコマンドレットを呼び出す方法

  1. 呼び出されるコマンドレットを定義するアセンブリが参照され、適切なステートメントが using 追加されます。 この例では、次の名前空間が追加されています。

    using System.Diagnostics;
    using System.Management.Automation;   // Windows PowerShell assembly.
    using Microsoft.PowerShell.Commands;  // Windows PowerShell assembly.
    
  2. コマンドレットの入力処理メソッドで、呼び出すコマンドレットの新しいインスタンスを作成します。 この例では 、Microsoft.PowerShell.Commands.Getprocesscommand 型のオブジェクトが、コマンドレットの呼び出し時に使用される引数を含む文字列と共に作成されます。

    GetProcessCommand gp = new GetProcessCommand();
    gp.Name = new string[] { "[a-t]*" };
    
  3. System.Management.Automation.Cmdlet.Invoke*メソッドを呼び出して、 コマンドレットを呼び出 Get-Process します。

      foreach (Process p in gp.Invoke<Process>())
      {
        Console.WriteLine(p.ToString());
      }
    }
    

この例では、コマンドレット Get-Process は、コマンドレットの System.Management.Automation.Cmdlet.BeginProcessing メソッド内から呼び出されます。

using System;
using System.Diagnostics;
using System.Management.Automation;   // Windows PowerShell assembly.
using Microsoft.PowerShell.Commands;  // Windows PowerShell assembly.

namespace SendGreeting
{
  // Declare the class as a cmdlet and specify an
  // appropriate verb and noun for the cmdlet name.
  [Cmdlet(VerbsCommunications.Send, "GreetingInvoke")]
  public class SendGreetingInvokeCommand : Cmdlet
  {
    // Declare the parameters for the cmdlet.
    [Parameter(Mandatory = true)]
    public string Name
    {
      get { return name; }
      set { name = value; }
    }
    private string name;

    // Override the BeginProcessing method to invoke
    // the Get-Process cmdlet.
    protected override void BeginProcessing()
    {
      GetProcessCommand gp = new GetProcessCommand();
      gp.Name = new string[] { "[a-t]*" };
      foreach (Process p in gp.Invoke<Process>())
      {
        Console.WriteLine(p.ToString());
      }
    }

    // Override the ProcessRecord method to process
    // the supplied user name and write out a
    // greeting to the user by calling the WriteObject
    // method.
    protected override void ProcessRecord()
    {
      WriteObject("Hello " + name + "!");
    }
  }
}

参照

Writing a Windows PowerShell Cmdlet (Windows PowerShell コマンドレットの記述)