PowerShell/Scripts/list-environment-variables.ps1

16 lines
357 B
PowerShell
Raw Normal View History

2021-04-07 11:53:57 +02:00
#!/usr/bin/pwsh
2021-02-01 07:30:14 +01:00
<#
2021-03-22 20:10:18 +01:00
.SYNTAX ./list-environment-variables.ps1
.DESCRIPTION lists all environment variables
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-02-01 07:30:14 +01:00
#>
try {
Get-ChildItem env:
exit 0
} catch {
2021-02-16 10:03:20 +01:00
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-02-01 07:30:14 +01:00
exit 1
}