|
Import-CSV from Web/Variable At the moment, the import-csv command only allows for importing a local CSV
file (at least to my knowledge). However, I need to be able to pull a file
off the web (using a System.Net.WebClient object) and then import that data
straight into PS. I've tried passing data into a variable first and using
"variable = [csv]data" (the latter turned out to only work for XML). Is there
any sort of advanced method I'm missing out on or is this just impossible at
the moment? |