I'm sure this is quite easy but I can't find a way to format a semicolon-delimited string as a list or object, with as generic method as possible.
Running the command displays the following:
PS> Get-childitem -path Env:\Path
Name Value
---- -----
Path Value1;Value2;Value3 etc...
Expected result is:
Name Value
---- ----
Path Value1
Path Value2
Path Value3