Closed c-bless closed 1 month ago
Attributes have been removed. They need to be collected in additional requests.
$basic_properties` = @(
'DistinguishedName', 'SID', 'SamAccountName', 'displayName', 'Description', 'GivenName',
'Surname', 'Name', 'Enabled', 'BadLogonCount', 'BadPwdCount' , 'Created', 'LastBadPasswordAttempt',
'lastLogon', 'LastLogonDate', 'logonCount', 'LockedOut', 'PasswordExpired', 'PasswordLastSet',
'pwdLastSet','Modified'
)
# MemberOf will contain sub-elements. Thus, it will not be iterated to create new XML elements.
$properties = $basic_properties + "MemberOf"
Description: Limit properties collected via AD-User and use dedicated requests to collect the attributes only for affected user account.
Currently the following properties are collected at once.
Requested solution: Remove
'TrustedForDelegation', 'TrustedToAuthForDelegation', 'PasswordNeverExpires','PasswordNotRequired', 'msDS-AllowedToDelegateTo'
from the list of properties collected at once.Create dedicated search requests to collect missing attributes. Therefore a new Tag needs to be added to XML output (
<ADUserAddon>
).