Asterisk - アスタリスク -

説明するほどでもないブログ

Windows PowerShell

【PowerShell】 カレントディレクトリの取得。

どうも。Windows PowerShell の学習メモです。 # ファイル名込み $myInvocation.MyCommand.Path ⇒ 実行結果: D:\My-Script\getCurrentDirectory.ps1 # ファイル名除く Split-Path $myInvocation.MyCommand.Path -Parent ⇒ 実行結果: D:\My-Script ※ 参考サ…

【PowerShell】 プロパティとメソッドの表示。

どうも。Windows PowerShell の学習メモです。 # プロパティとメソッドの表示 $MyInvocation | Get-Member # プロパティのみ表示 $MyInvocation.MyCommand | Get-Member -membertype properties # メソッドのみ表示 $MyInvocation.MyCommand | Get-Member -m…