From 4438194d0ed61e52d35464ae07e092462097c174 Mon Sep 17 00:00:00 2001 From: Sam Erde <20478745+SamErde@users.noreply.github.com> Date: Tue, 2 Jan 2024 09:58:19 -0500 Subject: [PATCH] New script to get env vars --- Get-EnvironmentVariables.ps1 | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Get-EnvironmentVariables.ps1 diff --git a/Get-EnvironmentVariables.ps1 b/Get-EnvironmentVariables.ps1 new file mode 100644 index 0000000..cff1c9c --- /dev/null +++ b/Get-EnvironmentVariables.ps1 @@ -0,0 +1,19 @@ +function Get-EnvironmentVariable { + [CmdletBinding()] + [Alias("genv")] + param ( + + ) + + begin { + + } + + process { + Get-ChildItem env: + } + + end { + + } +}