mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-06 18:41:42 +01:00
16 lines
354 B
PowerShell
16 lines
354 B
PowerShell
|
#!/snap/bin/powershell
|
||
|
<#
|
||
|
.SYNTAX ./list-environment-variables.ps1
|
||
|
.DESCRIPTION lists all environment variables
|
||
|
.LINK https://github.com/fleschutz/PowerShell
|
||
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||
|
#>
|
||
|
|
||
|
try {
|
||
|
Get-ChildItem env:
|
||
|
exit 0
|
||
|
} catch {
|
||
|
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||
|
exit 1
|
||
|
}
|