Sunday, June 1, 2014

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"

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.