PowerShell - Error Handling
What will be the output of this PowerShell code?
try { Get-Item 'C:\missing.txt' } catch { Add-Content -Path 'error.log' -Value "Error: $_"; 'Error logged' }