Why am I getting "Script error: Label [SophMissing] not found!" when the label is just a couple lines down? Any ideas?
code:
 
:win9x
$IcMon = READVALUE("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run", "InterCheckMonitor")
if @error
goto "SophMissing"
if $IcMon = ""C:\\PROGRAM FILES\\SOPHOS SWEEP\\ICMON.EXE\" -minimised""
goto "Chk9xFiles"
endif
endif
:Chk9xFiles
IF EXIST ("C:\Program Files\Sophos SWEEP\ICMON.exe")
GOTO "Sophos_IS_INSTALLED"
else GOTO "chkd"
endif
:chkd
IF EXIST ("D:\Program Files\Sophos SWEEP\ICMON.exe")
GOTO "Sophos_IS_INSTALLED"
else GOTO "chke"
endif
:chke
IF EXIST ("E:\Program Files\Sophos SWEEP\ICMON.exe")
GOTO "Sophos_IS_INSTALLED"
endif

:SophMissing

TIA!