Using the windows command prompt, can I echo %path% and get the resulting paths on separate rows? Something like this but for windows:
echo $path | tr \':\'
Try:
($env:Path).Replace(';',"`n")
or
$env:path.split(";")