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 \':\'
this works for me (in a cmd window):
powershell -Command ($env:Path).split(';')