List all environment variables in PowerShell
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
info Last modified by Raymond 3 years ago
copyright
This page is subject to Site terms.
comment Comments
No comments yet.