Environment variables are commonly used in many frameworks or programs.
In PowerShell, we can use Get-ChildItem cmdlet to retrieve all the environment variables.
You can also use Get-ChildItem Env:$VariableName to retrieve the value of certain environment variable.
Code snippet
Get-ChildItem Env:
Get-ChildItem Env:PATH