Home > Mobile >  Convert negative signed in error number to standard error number
Convert negative signed in error number to standard error number

Time:10-25

I have a vague memory of reading about a way to convert error numbers from a format like this -1073740791 to something meaningful. I am pretty sure it involved converting from a signed Int to something else, and that there was a way to do it in Powershell. But I can't remember enough details to get any results from a search it seems. Am I just missing some detail, or am I misremembering completely?

CodePudding user response:

You can do the following to convert those numbers to more Google-searchable message/exception hex numbers:

  • Related