How to quickly view the contents of a .CSV file using PowerShell

To quickly view a .CSV file using PowerShell, pipe the file in question to the Out-GridView cmdlet.

Import-CSV .\test.csv | Out-GridView -Title "CSV File"