Quantcast
Channel: Windows Archive - TechOverflow
Viewing all articles
Browse latest Browse all 17

How to fix Windows “echo $PATH” empty result

$
0
0

When you try to run

echo $PATH

you will always get an empty result.

Instead, if you are in cmd, use

echo %PATH%

but if you are using PowerShell, you need to use

$env:PATH

 


Viewing all articles
Browse latest Browse all 17

Trending Articles