Private/Get-EnvVarValueByName.ps1

function Get-EnvVarValueByName {
  param($Name)
  [System.Environment]::GetEnvironmentVariable($Name)
}