次の方法で共有


GetProcessSample03 サンプル

このサンプルでは、ローカル コンピューター上のプロセスを取得するコマンドレットを実装する方法を示します。 パイプラインからオブジェクトを受け取れるパラメーター、またはプロパティ名がパラメーター名と同じオブジェクトのプロパティの値を受け取るパラメーター Name が提供されます。 このコマンドレットは、Windows PowerShell Get-Process 2.0 で提供されるコマンドレットの簡略化されたバージョンです。

を使用してサンプルをビルドするVisual Studio。

  1. Windows PowerShell 2.0 SDK がインストールされている場合は、GetProcessSample03 フォルダーに移動します。 既定の場所は C:\Program Files (x86)\Microsoft SDK\Windows\v7.0\Samples\sysmgmt\WindowsPowerShell\csharp\GetProcessSample03 です。

  2. ソリューション (.sln) ファイルのアイコンをダブルクリックします。 これにより、サンプル プロジェクトが Visual Studio。

  3. [ビルド] メニューで、 [ソリューションのビルド] を選択します。

    サンプルのライブラリは、既定の \bin フォルダーまたは \bin\debug フォルダーにビルドされます。

サンプルを実行する方法

  1. 次のモジュール フォルダーを作成します。

    [user]/documents/windowspowershell/modules/GetProcessSample03

  2. サンプル アセンブリをモジュール フォルダーにコピーします。

  3. Windows PowerShell を起動します。

  4. 次のコマンドを実行して、アセンブリを読み込Windows PowerShell。

    Import-module getprossessample03

  5. 次のコマンドを実行してコマンドレットを実行します。

    get-proc

必要条件

このサンプルでは、Windows PowerShell 2.0 が必要です。

対象

このサンプルでは、次の例を示します。

  • コマンドレット属性を使用したコマンドレット クラスの宣言。

  • Parameter 属性を使用したコマンドレット パラメーターの宣言。

  • パラメーターの位置を指定する。

  • パラメーターがパイプラインから入力を受け取る場合に指定します。 入力は、オブジェクトまたはプロパティ名がパラメーター名と同じオブジェクトのプロパティの値から取得できます。

  • パラメーター入力の検証属性の宣言。

このサンプルでは、パイプラインからの入力を受けGet-Procパラメーターを含む Get-Proc コマンドレット Name の実装を示します。

namespace Microsoft.Samples.PowerShell.Commands
{
  using System;
  using System.Diagnostics;
  using System.Management.Automation;           // Windows PowerShell namespace
  #region GetProcCommand

  /// <summary>
  /// This class implements the get-proc cmdlet.
  /// </summary>
  [Cmdlet(VerbsCommon.Get, "Proc")]
  public class GetProcCommand : Cmdlet
  {
    #region Parameters

    /// <summary>
    /// The names of the processes retrieved by the cmdlet.
    /// </summary>
    private string[] processNames;

    /// <summary>
    /// Gets or sets the names of the
    /// process that the cmdlet will retrieve.
    /// </summary>
    [Parameter(
               Position = 0,
               ValueFromPipeline = true,
               ValueFromPipelineByPropertyName = true)]
    [ValidateNotNullOrEmpty]
    public string[] Name
    {
      get { return this.processNames; }
      set { this.processNames = value; }
    }

    #endregion Parameters

    #region Cmdlet Overrides

    /// <summary>
    /// The ProcessRecord method calls the Process.GetProcesses
    /// method to retrieve the processes specified by the Name
    /// parameter. Then, the WriteObject method writes the
    /// associated processes to the pipeline.
    /// </summary>
    protected override void ProcessRecord()
    {
      // If no process names are passed to the cmdlet, get all
      // processes.
      if (this.processNames == null)
      {
        WriteObject(Process.GetProcesses(), true);
      }
      else
      {
        // If process names are passed to the cmdlet, get and write
        // the associated processes.
        foreach (string name in this.processNames)
        {
          WriteObject(Process.GetProcessesByName(name), true);
        }
      } // End if (processNames ...)
    } // End ProcessRecord.

    #endregion Overrides
  } // End GetProcCommand.
  #endregion GetProcCommand
}

参照

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