My second piece was not meant to be functional and was never tested. However at your request...

Code:

Dim $Type, $S, $J, $R

If KeyExist("HKCU\Software\Golfing") = 1
   
$Type = Readtype("HKCU\Software\Golfing","Round1")
   
$R = ReadValue("HKCU\Software\Golfing","Round1")
   
   
Select
        Case $Type = "Reg_Multi_SZ"
            $S = Split($R,"|")
           
$J = Join($S," ")
       
Case $Type = "Reg_SZ"
            $J = $R
        Case 1
           
@Error = 5
   
EndSelect
If
$J = "Enterprise Terminal Server ";space added at end as the join adds one
    ? "We have a match. The string returned was: " $J
Else
    ? "No match found. The string returned was: " $J
EndIf


Else
    Exit 1
EndIf