PowerShell - Error Handling
What will be the output of this PowerShell script?
try {
Get-Item 'C:\nonexistentfile.txt'
} catch {
Write-Output 'File not found, continuing script.'
}
Write-Output 'Script finished.'