qshinoの日記

Powershell関係と徒然なこと

2017-03-15から1日間の記事一覧

ComObject廃棄

ComObject廃棄 変数廃棄 Remove-Variable aaa 例 $x = New-Object -com Excel.Application $x.Visible = $True Start-Sleep 5 $x.Quit() [System.Runtime.Interopservices.Marshal]::ReleaseComObject($x) Remove-Variable x 参考 https://technet.microsoft…

Job Event for powershell

Powershell jobの終了通知 Register-ObjectEvent で終了通知可能。 Register-ObjectEvent $job -EventName StateChanged -SourceIdentifier ハンドラ名 -Action { アクション } 取扱物件は ターゲットジョブ ハンドラ ハンドラジョブ ハンドラを登録するとハ…

HostName, IPアドレス by powershell

ホスト名、IPアドレス取得 ホスト名 [Net.Dns]::GetHostName() $Env:COMPUTERNAME hostname (Get-CimInstance -Class Win32_ComputerSystem).Name IPアドレス Get-NetIPAddress [Net.Dns]::GetHostAddresses(‘’).IPAddressToString [Net.Dns]::GetHostAddres…

Powershell 改行

Powershell で改行なら、 $nl = [Environment]::NewLine 最近はOpenSourceになって改行コードが異なる環境でも動く様なので、移植性を考えて。

書式出力 by powershell

書式付き出力 -f 演算子 書式文字列 -f 引数 例) “Hi, {0}! I give you {1:d2} Yen. rn” -f “Taro”, 20 書式文字一覧 c 通貨 d 10進数 精度は最小桁数 e 浮動小数点数 n.nen精度=小数部桁数 f 浮動小数点数 n.nnn 精度=小数点以下 g 浮動小数点数 ne±n 精度=…