标签: powershell
我使用try..catch来处理异常。 为什么未捕获以下ItemNotFoundException?
try..catch
ItemNotFoundException
try { Get-Item c:\temp\no-such-file.txt } catch { $err = $_.ExceptionMessage Write-Output "$err" }