I\'m using a CSV to store some information which I want to use in Powershell. To make the CSV more \"readeable\" I decided to put every piece of information into a separate fiel
Import-CSV can handle the ; delimiter just fine - use the -delimiter ';' -parameter.
Import-CSV
;
-delimiter ';'