How do I add members by Active Directory (AD) integration?
To add members by AD file for the first time:
- Start Powershell.
- Export AD data to a csv file (use the "get-aduser" command to get AD data)
get-aduser -filter {(EmailAddress -like "*@*") -And (Enabled -eq $true)} -SearchBase "DC=company,DC=com" -Properties * | Select DisplayName, samaccountname, mail, title, department, enabled | Export-csv -Path C:\Users\Administrator\Documents\ADMemvers.csv -NoTypeInformation -Encoding "UTF8" - Go to the Member Management page (https://u.cyberlink.com/organization/user-management) and then click "Add Member".
- Select "Add all employees in AD Server as Members" and then click "Next".
- Drag and drop the exported csv file into the pop-up window.
- Click "Add" to finish it.
To sync the members list from AD file for new members, job transfer, or resignation:
- Export AD data to a csv file.
- Go to the Member Management page (https://u.cyberlink.com/organization/user-management) and then click "AD Sync".
- Drag and drop the exported csv file into the pop-up window.
- Click "Sync" to complete the update.
For the tutorial about how to use the new feature, visit https://youtu.be/JsWF_Doh0ZI
