PowerShell - Automation Patterns
What will be the result of running this PowerShell script?
Get-EventLog -LogName System -EntryType Error | Select-Object -First 3 | Export-Csv -Path 'errors.csv' -NoTypeInformation; Get-Content 'errors.csv'
