How to add users into Distribution Group in bulk?
Export the value of users into a txt file, and import the file with Import-Csv cmdlet • Export the value Csvde -r objectclass=user -l “Name” -f C:\addmember.txt • Import the file via Exchange Management Shell (EMS) Import-csv C:\addmember.txt | foreach {add-distributiongroupmember DGName -member $_.Name} Resources: How to use Csvde to import contacts and user objects into Active Directory Using the Import-Csv Cmdlet 8. How to save password when using Outlook Anywhere When using Outlook Anywhere, if the Basic Authentication is used, you will be prompted for the user’s password. The solution to stopping the password prompt is to use NTLM on both Client Access Server and Client side. After that, if still comes up the password, please save passwords by using following method on the client: a. Run control userpasswords2 b. Under Advanced tab, click Manage Passwords c. Please add following entry: Log on to: *.domainname (such as *.microsoft.com) Username: domain\username Password: password T