Summary: Use Windows PowerShell to read a Tab delimited file.
How can I use Windows PowerShell to read a Tab delimited file?
Use the Import-CSV cmdlet and specify a delimiter of `t, for example:
$a = Import-Csv -Delimiter "`t" -Path c:\fso\mytabfile.tsv