Local Error Code Translations
You can attempt to translate an error on a machine with PowerShell using
[System.ComponentModel.Win32Exception]0x80000001 | Select *
where 0x80000001 is an example error. The error does not need to be in hexadecimal as
[System.ComponentModel.Win32Exception]1605 | Select *
also works. This should be tried on the machine that produced the error as not all components are available or necessarily the same between windows versions.
