Display all environment variables from a running PowerShell script
Display all environment variables from a running PowerShell script
Display all environment variables from a running PowerShell script
Re: Display all environment variables from a running PowerShell script
Shorter version:
```
gci env:* | sort-object name
```
This will display both the name and value.
```
gci env:* | sort-object name
```
This will display both the name and value.