PowerShell - Active Directory
Given the CSV file 'users.csv' with columns 'Username' and 'Email', what will this script output?
Import-Csv users.csv | ForEach-Object { "User: $($_.Username), Email: $($_.Email)" }