I know it is tagged as TODO, but in config.ml:
set DOMAIN_CONTROLLERS = "DOMAIN CONTROLLERS@" # TODO: check languages
On non-English Active Directory installations, the Domain Controllers group name is localized: "DOMÄNENCONTROLLER@" on German systems or "CONTRÔLEURS DE DOMAINE@" on French systems. The string match might silently fail, missing paths via SeBackupPrivilege on OUs containing Domain Controllers.
The most robust fix (I believe?) would be to match against the well-known SID S-1-5-9 instead of the group name, which is language-independent.
I know it is tagged as TODO, but in
config.ml:On non-English Active Directory installations, the Domain Controllers group name is localized:
"DOMÄNENCONTROLLER@"on German systems or"CONTRÔLEURS DE DOMAINE@"on French systems. The string match might silently fail, missing paths viaSeBackupPrivilegeon OUs containing Domain Controllers.The most robust fix (I believe?) would be to match against the well-known SID
S-1-5-9instead of the group name, which is language-independent.