PowerShell - Scripting Best Practices
What will this PowerShell script output?
try {
Get-Item 'C:\NonExistentFile.txt'
} catch {
Write-Output 'File not found'
}