[PowerShell] try catch finally によるエラー処理

PowerShell 2.0 以降は、try-catch が使用できる。
try
{
        $x = 1 / 0
}
catch [Exception]
{
        $retMessage = $_.Exception.Message
        #Write-Host $retMessage
        # 0 で除算しようとしました。
}
finally
{  
}

このブログの人気の投稿

Excel で入力した文字に勝手に取り消し線が入る

コピーした行の挿入が表示されない時はフィルタされていないかチェック