Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: Decompression Errors #4 and -200000032

  1. #1

    Default Decompression Errors #4 and -200000032

    I've seen both these errors recently. Care to explain the significance
    of these particular error numbers?

    Mike Hanson
    www.boxsoft.net

  2. #2

    Default Re: Decompression Errors #4 and -200000032

    Also, would it be too much to ask for these error messages to be more
    informative. For example, rather than just getting an obscure error
    number, it would be better to learn that it was "access denied". The
    user attempting the install could more likely solve it themselves.

    Mike Hanson
    www.boxsoft.net

  3. #3

    Default Re: Decompression Errors #4 and -200000032

    Hi Mike,

    > Also, would it be too much to ask for these error messages to be more
    > informative. For example, rather than just getting an obscure error
    > number, it would be better to learn that it was "access denied". The
    > user attempting the install could more likely solve it themselves.

    see attached screenshot.

    Unfortunately, there are thousands of different error codes in Windows. The
    common ones are in the help file.

    Friedrich
    Attached Images Attached Images  

  4. #4

    Default Re: Decompression Errors #4 and -200000032

    Friedrich,

    > Unfortunately, there are thousands of different error codes in Windows.

    Just include a copy of winerror.h with every install!<g>

    --
    Lee White

    RPM Report Viewer.: http://www.cwaddons.com/products/rpm/
    Report Faxing.....: http://www.cwaddons.com/products/afe/
    ---Enroll Today---: http://CWaddons.com

    Creative Reporting: http://www.CreativeReporting.com

    Product Release & Update Notices
    http://twitter.com/DeveloperPLUS

    Hydrogen, the only CLEAN fuel and the future of clean air.

  5. #5

    Default Re: Decompression Errors #4 and -200000032

    Lee,

    >> Unfortunately, there are thousands of different error codes in Windows.
    >
    > Just include a copy of winerror.h with every install!<g>

    If it would be that easy <g>. SetupBuilder makes use of quite a few
    external components. All with its own set of individual error codes.

    Error #4 tells us that it is a WriteFile error during the decompression
    process. Error -200000032 tells us exactly where (and why) it happens in
    the installer runtime code. The last part of the number (32) is (in this
    specific case) the GetLastError code -- only this can be found in winerror.h
    <g>. It's a VERY complex beast.

    Friedrich

  6. #6

    Default Re: Decompression Errors #4 and -200000032

    Maybe a URL?

    https://docs.microsoft.com/en-us/win...-codes--0-499-

    --
    Richard
    --
    Richard

  7. #7

    Default Re: Decompression Errors #4 and -200000032

    Hi Richard,

    > Maybe a URL?
    >
    > https://docs.microsoft.com/en-us/win...-codes--0-499-

    Yes, for system error codes this would work. But not for the error codes
    from external components.

    That's why we only have the common errors in the online help. For exotic
    error codes, I have to start investigation and check the manuals (and pray
    <g>). There are literally thousands of error codes - SetupBuilder makes use
    of at least 30 components.

    Friedrich

  8. #8

    Default Re: Decompression Errors #4 and -200000032

    Friedrich,

    > Error -200000032 tells us exactly where (and why) it happens in
    > the installer runtime code. The last part of the number (32) is (in this
    > specific case) the GetLastError code -- only this can be found in winerror.h

    I use something similar in AFE wrapping the Clarion errorcode with a
    negative value such as -11000 + ERRORCODE() so I know what the error
    is and where it occurred.

    --
    Lee White

    RPM Report Viewer.: http://www.cwaddons.com/products/rpm/
    Report Faxing.....: http://www.cwaddons.com/products/afe/
    ---Enroll Today---: http://CWaddons.com

    Creative Reporting: http://www.CreativeReporting.com

    Product Release & Update Notices
    http://twitter.com/DeveloperPLUS

    Hydrogen, the only CLEAN fuel and the future of clean air.

  9. #9

    Default Re: Decompression Errors #4 and -200000032

    Thanks, Friedrich. I understand the complexity, but that doesn't stop
    the grumbling from my team members. <sigh>

    Mike Hanson
    www.boxsoft.net

  10. #10

    Default Re: Decompression Errors #4 and -200000032

    Mike,

    > Thanks, Friedrich. I understand the complexity, but that doesn't stop
    > the grumbling from my team members. <sigh>

    Yes, I feel your pain <g>.

    Perhaps a link to a list of (well known) runtime error codes could make life
    easier.

    Something like this:

    https://www.setupbuilder.com/errorcodes.htm

    Unfortunately, it is absolutely impossible to display the cause of a problem
    in human readable form within the installer.

    Friedrich

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •