briangw,
The Licencing.ps1 file contains these lines on 1258 - 1263
switch($Type)
{
$TextStrings.Info{$pboxInfo.visible = $true}
$TextStrings.Error {$pboxError.visible = $true}
$TextStrings.Warning{$pboxWarning.visible = $true}
}
A space needs to placed between $TextStrings.Info and the curly bracket, and there needs to be a space between $TextStrings.Warning and the curly bracket like so...
switch($Type)
{
$TextStrings.Info {$pboxInfo.visible = $true}
$TextStrings.Error {$pboxError.visible = $true}
$TextStrings.Warning {$pboxWarning.visible = $true}
}
Everyone else will have this same problem in Corefig 1.1.1 unless they make these changes.
Good luck,
T.CK