PowerShell

PowerShell

[Tips]XmlElementを取得する

XMLの要素を取得する関数、GetElementNameを作ってみました。(元ネタはこちら) function Get-Elementname($element) { for ( $i = 0; $i -lt $element.get_Ch...
PowerShell

PowerShell好きですか?

▼ LovePowerShell.ps1 $r = Read-Host "PowerShell好きですか?" switch($r) { "y"{"y←ヾ(*´∀`*)ノキャッキャ"} "n"{"n←(´・ω・``) ショボーン"} def...
PowerShell

I LOVE PowerShe!! from Chiaki

はじめまして、ちあきです!! 今日から PowerShell from Japan!! でお世話になります。 よろしくお願いいたします。 ▼ "I LOVE PowerShe!!"を出力 Write-Host "`nI " -NoNewli...
PowerShell

[メモ]CTP3とRC版でのISE Object Modelの相違

CTP3とRC版では、ISE Object Modelに相違があるので注意。 CTP3 RC $psise.CurrentOpenedRunspace $psise.CurrentPowerShellTab $psise.CurrentOp...
PowerShell

[Tips]Windows VistaにPowerShell V2 RCをインストールするには?

Windows Vista に Windows PowerShell V2 RC(以下PowerShell V2)をインストールする手順について説明します。 PowerShell V2は以前のバージョンのPowerShellと共存することは...