Table 4 is not confusing at all. You SHOULD know what is a OR and why it is quite REQUIRED to either have bits or hex .
In that case, you can either calculate the Final Value or use OR operand.
for example:
You want the Service to ignore unknown CAs errors (0x100)
and
You want the Service to ignore improper certificate Use (0x200)
And
You want the service to ignore improper date certificate (0x2000)
You can either enter 2,1,0,0x100|0x200|0x2000
or
2,1,0,0x2300 (OR value).
See why
↧