I know of no way to access the bits of any flag attribute (like searchFlags) by bit number. I would only note that:2^7 = 128 (decimal) = 0x80 (hex)2^9 = 512 (decimal) = 0x200 (hex)You can edit the searchFlags attribute in ADSI Edit by entering the decimal number. You could also assign the integer value in code. However, the recommended method to set bits of any flag attribute (userAccountControl, groupType, searchFlags, systemFlags) in code is to use a bit mask. The bit mask for RODC_FILTERED is
↧