Functions/Get-EnvironmentVariables.ps1
function Get-EnvironmentVariables { [CmdletBinding()] param ( # [Parameter(Mandatory)] [string] $ParameterName ) Get-ChildItem Env: | Sort-Object name } |
function Get-EnvironmentVariables { [CmdletBinding()] param ( # [Parameter(Mandatory)] [string] $ParameterName ) Get-ChildItem Env: | Sort-Object name } |