Code:
FOR EACH $x IN $DirList
IF InStr($x, "UWFX5")
SHELL '%COMSPEC% /c del /F "$DLProgFiles\$x"'
IF @ERROR = 0
$ = WriteLine(5, "- $DLProgFiles\$x" + @CRLF)
ELSE
$ = WriteLine(5, "$DLProgFiles\$x could not be deleted!" + @CRLF)
ENDIF
ELSE
$ = WriteLine(5, "$DLProgFiles\$x was not apart of WinFixer 2005!" + @CRLF)
ENDIF
NEXT



The SHELL '%comspec%' line replaced:

Code:

del /f $DLProgFiles+"\"+$x



** Side Note: In retrospect, I should've echo'd @ERROR/@SERROR when it was evaluating to else but I didn't think about that. <--- Still a noob, sorry guys.