PowerShell - Error Handling
What will this PowerShell script output?
try { Get-Content 'Z:\missingfile.txt' -ErrorAction Stop } catch { Write-Output 'Error caught' }