alrighty.....

$BProg = ICQLite
;$Bat = "%SystemDrive%\unwise.bat"

$SWRegKey = ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\$BProg.exe")
$SWProgKey = KeyExist("$SWRegKey")

IF $SWProgKey = 1 ;Banned software is installed on this machine
? "Banned software $BProg has been found on computer @Wksta!"
$ProgStr = ReadValue("$SWRegKey", "Path")
? "Removing banned software $BProg from computer @Wksta....."
$cmdln = '"'+$ProgStr+'\unwise32.exe" /A "'+$ProgStr+'\'+$BProg+'.log"'
? '$cmdln'
SHELL "$cmdln"
ENDIF
Return

Thanks,