Advertisement
MagicAndre1981

new NTSTATUS codes in Windows 10 Redstone (14295 SDK)

Mar 29th, 2016
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //
  2. // MessageId: STATUS_GHOSTED
  3. //
  4. // MessageText:
  5. //
  6. // At least a portion of IO range intersects with a ghosted file range.
  7. //
  8. #define STATUS_GHOSTED                   ((NTSTATUS)0x0000012FL)
  9.  
  10.  
  11.  
  12. //
  13. // MessageId: STATUS_DEVICE_IN_MAINTENANCE
  14. //
  15. // MessageText:
  16. //
  17. // The device is in maintenance mode.
  18. //
  19. #define STATUS_DEVICE_IN_MAINTENANCE     ((NTSTATUS)0xC0000499L)
  20.  
  21. //
  22. // MessageId: STATUS_NOT_SUPPORTED_ON_DAX
  23. //
  24. // MessageText:
  25. //
  26. // This operation is not supported on a DAX volume.
  27. //
  28. #define STATUS_NOT_SUPPORTED_ON_DAX      ((NTSTATUS)0xC000049AL)
  29.  
  30.  
  31.  
  32. //
  33. // MessageId: STATUS_SECUREBOOT_POLICY_NOT_AUTHORIZED
  34. //
  35. // MessageText:
  36. //
  37. // The Secure Boot Supplemental Policy file was not authorized on this machine.
  38. //
  39. #define STATUS_SECUREBOOT_POLICY_NOT_AUTHORIZED ((NTSTATUS)0xC0430008L)
  40.  
  41. //
  42. // MessageId: STATUS_SECUREBOOT_POLICY_UNKNOWN
  43. //
  44. // MessageText:
  45. //
  46. // The Supplemntal Policy is not recognized on this device.
  47. //
  48. #define STATUS_SECUREBOOT_POLICY_UNKNOWN ((NTSTATUS)0xC0430009L)
  49.  
  50. //
  51. // MessageId: STATUS_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION
  52. //
  53. // MessageText:
  54. //
  55. // The Antirollback version was not found in the Secure Boot Policy.
  56. //
  57. #define STATUS_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION ((NTSTATUS)0xC043000AL)
  58.  
  59. //
  60. // MessageId: STATUS_SECUREBOOT_PLATFORM_ID_MISMATCH
  61. //
  62. // MessageText:
  63. //
  64. // The Platform ID specified in the Secure Boot policy does not match the Platform ID on this device.
  65. //
  66. #define STATUS_SECUREBOOT_PLATFORM_ID_MISMATCH ((NTSTATUS)0xC043000BL)
  67.  
  68. //
  69. // MessageId: STATUS_SECUREBOOT_POLICY_ROLLBACK_DETECTED
  70. //
  71. // MessageText:
  72. //
  73. // The Secure Boot policy file has an older Antirollback Version than this device.
  74. //
  75. #define STATUS_SECUREBOOT_POLICY_ROLLBACK_DETECTED ((NTSTATUS)0xC043000CL)
  76.  
  77. //
  78. // MessageId: STATUS_SECUREBOOT_POLICY_UPGRADE_MISMATCH
  79. //
  80. // MessageText:
  81. //
  82. // The Secure Boot policy file does not match the upgraded legacy policy.
  83. //
  84. #define STATUS_SECUREBOOT_POLICY_UPGRADE_MISMATCH ((NTSTATUS)0xC043000DL)
  85.  
  86. //
  87. // Platform Manifest Error Messages
  88. //
  89. //
  90. // MessageId: STATUS_PLATFORM_MANIFEST_NOT_AUTHORIZED
  91. //
  92. // MessageText:
  93. //
  94. // The Platform Manifest file was not authorized on this machine.
  95. //
  96. #define STATUS_PLATFORM_MANIFEST_NOT_AUTHORIZED ((NTSTATUS)0xC0EB0001L)
  97.  
  98. //
  99. // MessageId: STATUS_PLATFORM_MANIFEST_INVALID
  100. //
  101. // MessageText:
  102. //
  103. // The Platform Manifest file was not valid.
  104. //
  105. #define STATUS_PLATFORM_MANIFEST_INVALID ((NTSTATUS)0xC0EB0002L)
  106.  
  107. //
  108. // MessageId: STATUS_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED
  109. //
  110. // MessageText:
  111. //
  112. // The file is not authorized on this platform because an entry was not found in the Platform Manifest.
  113. //
  114. #define STATUS_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED ((NTSTATUS)0xC0EB0003L)
  115.  
  116. //
  117. // MessageId: STATUS_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED
  118. //
  119. // MessageText:
  120. //
  121. // The catalog is not authorized on this platform because an entry was not found in the Platform Manifest.
  122. //
  123. #define STATUS_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED ((NTSTATUS)0xC0EB0004L)
  124.  
  125. //
  126. // MessageId: STATUS_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND
  127. //
  128. // MessageText:
  129. //
  130. // The file is not authorized on this platform because a Binary ID was not found in the embedded signature.
  131. //
  132. #define STATUS_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND ((NTSTATUS)0xC0EB0005L)
  133.  
  134. //
  135. // MessageId: STATUS_PLATFORM_MANIFEST_NOT_ACTIVE
  136. //
  137. // MessageText:
  138. //
  139. // No active Platform Manifest exists on this system.
  140. //
  141. #define STATUS_PLATFORM_MANIFEST_NOT_ACTIVE ((NTSTATUS)0xC0EB0006L)
  142.  
  143. //
  144. // MessageId: STATUS_PLATFORM_MANIFEST_NOT_SIGNED
  145. //
  146. // MessageText:
  147. //
  148. // The Platform Manifest file was not properly signed.
  149. //
  150. #define STATUS_PLATFORM_MANIFEST_NOT_SIGNED ((NTSTATUS)0xC0EB0007L)
  151.  
  152.  
  153. //
  154. // MessageId: STATUS_SPACES_DRIVE_SPLIT
  155. //
  156. // MessageText:
  157. //
  158. // The data on this drive is stale.
  159. //
  160. #define STATUS_SPACES_DRIVE_SPLIT        ((NTSTATUS)0xC0E7001CL)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement