What does Operator in the checklist mean? #162
Answered
by
0x6d69636b
sumrise0828
asked this question in
Q&A
-
Hello, I want to customize a manifest to meet different GCB standards. What do the operators in csv files mean? Or is there a better way to generate a CSV list? |
Beta Was this translation helpful? Give feedback.
Answered by
0x6d69636b
Sep 23, 2023
Replies: 1 comment
-
The operator controls the comparison of the current value with the recommended value. If the setting is to be 1, the operator is =. If the recommendation is 10 or less, the operator is <=. In the code you will find all the operators supported by https://github.com/0x6d69636b/windows_hardening/blob/master/HardeningKitty.psm1#L1485. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sumrise0828
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The operator controls the comparison of the current value with the recommended value. If the setting is to be 1, the operator is =. If the recommendation is 10 or less, the operator is <=.
In the code you will find all the operators supported by https://github.com/0x6d69636b/windows_hardening/blob/master/HardeningKitty.psm1#L1485.