Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does 0x80020101 represent?

Tags:

windows

A simple question that I can't find an answer for in Microsoft's error lookup or easily using google: what does the HRESULT 0x80020101 represent?

like image 574
dlanod Avatar asked Aug 18 '11 05:08

dlanod


2 Answers

http://support.microsoft.com/kb/247784

The HRESULT 0x80020101 translates to SCRIPT_E_REPORTED. This error can be observed when a scripting component fails under MTS.

like image 157
hari Avatar answered Nov 06 '22 09:11

hari


According to Eric Lippert in this blog post:

SCRIPT_E_REPORTED 0x80020101 -- the script engines return this to the host when there has been an unhandled error that the host has already been informed about via OnScriptError.

like image 36
Teudimundo Avatar answered Nov 06 '22 10:11

Teudimundo