PowerShell - Automation Patterns
What will this script output?
$data = Get-Service | Select-Object Name, Status; $data | Export-Csv -Path 'services.csv' -NoTypeInformation; (Import-Csv 'services.csv').Count
