diff --git a/src/XConfigMaster/Cmdlets/xconfigmaster.psm1 b/src/XConfigMaster/Cmdlets/xconfigmaster.psm1 index 56106c6..a6a9bc2 100644 --- a/src/XConfigMaster/Cmdlets/xconfigmaster.psm1 +++ b/src/XConfigMaster/Cmdlets/xconfigmaster.psm1 @@ -4611,7 +4611,15 @@ class UIInputStrategyCollection : HasCollectionContext{ $sortedStrategies = $this.Items() foreach($strategy in $sortedStrategies){ $value = $strategy.ExecuteStrategy() - + if($value -and ($parameter._properties["SkipParameterization"] -ine "true")) + { + if($parameter._properties["PlainText"] -ieq "true"){ + $value = $this.ParameterizeStringAsPlainText($value) + } + else{ + $value = $this.ParameterizeString($value) + } + } if($value){ return $value