PowerShell: Show Path Environment Variable
Show Value of Environment Variable PATH, from User
show env var of Path
, of current User, from registry
[environment]::GetEnvironmentVariable("path", "User") -split ";"

Show Value of Environment Variable PATH, from Machine
show env var of Path
, of current Machine, from registry
[environment]::GetEnvironmentVariable("path", "Machine") -split ";"