#cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.6.1 Author: sprasad Script Function: Show error #ce ---------------------------------------------------------------------------- #include-once Func _ShowError($errorCode = Default) Local $msg = "Installer seems to be corrupted. Please download again and try." If $errorCode <> Default Then $msg = $msg & @LF & "Error Code : " & $errorCode EndIf MsgBox(16, "Extraction Error", $msg) Exit EndFunc