これまでの流れで週末からWindows PowerShellについて、いろいろと調べているのだが、これは非常に面白い。例えばCmdLet(コマンドレット)という機能があって、以下のようなC#で書いたクラス(勿論VBでも良いが)から自分だけのコマンドが作れるのだ。 using System; using System.Collections.Generic; using System.Text; using System.Management.Automation; [Cmdlet("say","hello")] public class CmdLetTest : Cmdlet { private string name; [Parameter(Mandatory=true, Position=0)] public string Name { get { return this.name;