Viewing 2 posts - 1 through 2 (of 2 total)
Bruin - Tuesday, July 3, 2018 7:31 AMHow do you invoke the script -thanks
Using the following setup:1) CSV file = c:\tmp\ProductsTest.csv2) PS...
July 3, 2018 at 7:52 am
#1996147
FYI, The Import-Csv cmdlet handles embedded quotes.
e.g.$Header = "ProductKey","Code","Description","Narrative","Comment"
$Header = "ProductKey","Code","Description","Narrative","Comment"
$J = Import-Csv test.csv -Header $Header$J | Format-Table
Here's another version as...
July 3, 2018 at 7:32 am
#1996138