I am trying to use LDAP Admin to do some automated AD entry cleanup.
I can perform a modify on one attribute, but whenever I try to create an LDIF that performs two modifications, I cannot get the import wizard to load the file. It reports that the file type is unknown.
I tried the following syntax for the LDIF, which to my knowledge, is correct.
dn: CN=Jeffrey (Jeff) W Dierking,OU=Employees,DC=example,DC=com
changetype: modify
replace: physicalDeliveryOfficeName
physicalDeliveryOfficeName: SHK 219
-
replace: st
st: AK
I tried several various syntaxes that I thought might make sese. I read the RFC and that is where I derived the above example.
I also tried this:
dn: CN=Jeffrey (Jeff) W Dierking,OU=Employees,DC=example,DC=com
changetype: modify
replace: physicalDeliveryOfficeName
physicalDeliveryOfficeName: SHK 219
-
dn: CN=Jeffrey (Jeff) W Dierking,OU=Employees,DC=example,DC=com
changetype: modify
replace: st
st: AK
Thinking I would simply try to perform two separate modify statements, but it fails as well.
This concerns me for a different reason, because this leads me to believe that there is not the capability to perform mass changes with one file.
Thanks in advance for any help you might offer.