Added Files
This commit is contained in:
14
Powershell/Scripts/list-environment-variables.ps1
Normal file
14
Powershell/Scripts/list-environment-variables.ps1
Normal file
@@ -0,0 +1,14 @@
|
||||
<#
|
||||
.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
|
||||
}
|
||||
Reference in New Issue
Block a user