Merged PR 5522: Fix some formatting problems

Fix formatting
This commit is contained in:
Greg Lindsay 2018-01-26 21:43:14 +00:00
parent bb60482bf5
commit 8ac4c28055

View File

@ -7,7 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.pagetype: deploy
author: greg-lindsay
ms.date: 01/25/2018
ms.date: 01/26/2018
ms.localizationpriority: high
---
@ -110,18 +110,18 @@ Result codes can be matched to the type of error encountered. To match a result
<br>**C** = NTSTATUS value (ex: 0x**C**1900107)
2. Write down the last 4 digits of the error code (ex: 0x8007**0070** = 0070). These digits are the actual error code type as defined in the [HRESULT](https://msdn.microsoft.com/en-us/library/cc231198.aspx) or the [NTSTATUS](https://msdn.microsoft.com/en-us/library/cc231200.aspx) structure. Other digits in the code identify things such as the device type that produced the error.
3. Based on the type of error code determined in the first step (Win32 or NTSTATUS), match the 4 digits derived from the second step to either a Win32 error code or NTSTATUS value using the following links:
a. [Win32 error code](https://msdn.microsoft.com/en-us/library/cc231199.aspx)
b. [NTSTATUS value](https://msdn.microsoft.com/en-us/library/cc704588.aspx)
- [Win32 error code](https://msdn.microsoft.com/en-us/library/cc231199.aspx)
- [NTSTATUS value](https://msdn.microsoft.com/en-us/library/cc704588.aspx)
Examples:
- 0x80070070
- Based on the "8" this is a Win32 error code
- The last four digits are 0070, so look up 0x00000070 in the Win32 error code table
- The error is: ERROR_DISK_FULL
- The last four digits are 0070, so look up 0x00000070 in the [Win32 error code](https://msdn.microsoft.com/en-us/library/cc231199.aspx) table
- The error is: **ERROR_DISK_FULL**
- 0xC1900107
- Based on the "C" this is an NTSTATUS error code
- The last four digits are 0107, so look up 0x00000107 in the NTSTATUS values table
- The error is: STATUS_SOME_NOT_MAPPED
- The last four digits are 0107, so look up 0x00000107 in the [NTSTATUS value](https://msdn.microsoft.com/en-us/library/cc704588.aspx) table
- The error is: **STATUS_SOME_NOT_MAPPED**
Some result codes are self-explanatory, whereas others are more generic and require further analysis. In the examples shown above, ERROR_DISK_FULL indicates that the hard drive is full and additional room is needed to complete Windows upgrade. The message STATUS_SOME_NOT_MAPPED is more ambiguous, and means that an action is pending. In this case, the action pending is often the cleanup operation from a previous installation attempt, which can be resolved with a system reboot.