Hello Bob,

Your missing some syntax as well as having the wrong Registry path.

Please try the following code. Also please look at page 71 of the KiXtart 2001 User Manual (Kix2001.doc)

code:
$CheckPrinter = KeyExist("HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Printers\HP LaserJet 5")
If $CheckPrinter
? "Key exists.... end script"
GOTO END
Else
? "Key not found... Script will now launch batch file to install printer."
GOTO InstallPrinter
Endif

:InstallPrinter
Run I43300.BAT
GOTO END

:END
RETURN

Hope this helps...