Kix 4.11 RC 1
In the code below, I cannot get it to jump to the middle (testie6) label.
Any help appreciated.

$ServPk = readvalue("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion","CSDVersion")
IF $ServPk = "Service Pack 2"
? "Service Pack 2 installed."
GOSUB testie6
Else
shell '%COMSPEC% /c \\serv4\it$$\Install\ServicePacks\Win2kSP2\i386\update\update.exe /u /f /n
endif

:testie6
IF EXIST ("c:\program files\Internet explorer\custom\inetset.inf")
? "IE6 Already installed"
GOSUB end
ELSE
shell '%COMSPEC% /c \\serv4\distro\IE6\FLAT\WIN32\EN\ie6setup.exe
endif

:end
? "test end"
EXIT