14 lines
224 B
PowerShell
14 lines
224 B
PowerShell
function Get-ConfigurationDataMapValue {
|
|
[CmdletBinding()]
|
|
Param(
|
|
[Parameter(Mandatory=$true)]
|
|
$Map,
|
|
|
|
[Parameter(Mandatory=$true)]
|
|
[string]
|
|
$Key
|
|
)
|
|
|
|
return $Map[$Key]
|
|
}
|