Windows: Decode Win32 Error codes
if you have a Windows Errorcode like 0xc000021a and want to decode it to a human readable format you can use certutil.
An example
1
D:\> certutil -error 0xc000021a
2
0xc000021a (NT: 0xc000021a STATUS_SYSTEM_PROCESS_TERMINATED) -- 3221226010 (-1073741286)
3
Error message text: {Fatal System Error}
4
The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x).
5
The system has been shut down.
6
CertUtil: -error
command
completed successfully.
if you have a Windows Errorcode like 0xc000021a and want to decode it to a human readable format you can use certutil.
An example
An example
1 | D:\> certutil -error 0xc000021a |
2 | 0xc000021a (NT: 0xc000021a STATUS_SYSTEM_PROCESS_TERMINATED) -- 3221226010 (-1073741286) |
3 | Error message text: {Fatal System Error} |
4 | The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). |
5 | The system has been shut down. |
6 | CertUtil: -error command completed successfully. |
No comments:
Post a Comment