I would like to add 20-30 users to a SharePoint site (Members group). Unfortunately, the Add Users interface is excruciatingly slow (nearly a minute to browse for a single user). Can it be done in bulk?
-
Is a Powershell script an option for you? – lwbecker2 Mar 18 '14 at 23:27
3 Answers
If you know the users email addresses, you can add them in bulk, delimited by a semicolon.
user1@mycompany.com;user2@mycompany.com ...etc or by domain account domain\user1;domain\user2;domain\user3
You can use active directory groups if one exists. I've even copied users off of an email before and dumped them in, you might not get 100% matches always, but it can be faster than looking them all up.
- 43,293
- 10
- 53
- 93
-
2If you have to add multiple users to multiple groups you can also use PowerShell http://stackoverflow.com/questions/3458392/add-user-to-sharepoint-2010-group-using-powershell . – Scott Keck-Warren May 26 '11 at 12:56
Wouldn't it be smarter to find out, why your "Add user interface" is so slow? If you say that it takes a minute to add a single user, I guess that the people picker needs that long to resolve the user in AD, right?
So, if that is the case, try to limit the scope of the people picker using stsadm. In this article you will find the commands you need. http://www.synergyonline.com/blog/blog-moss/Lists/Posts/Post.aspx?ID=5
Hope that helps.
- 2,146
- 1
- 15
- 28