We need to add several users to several SharePoint Groups.

Does anyone have an example of how to add a user to a sharepoint group using power shell.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Try this script Set-SPUser -Identity 'fun/factory' -Web http://someserver -Group 'Name of group'

link|improve this answer
feedback

To add multiple users to multiple groups, you could use a longer script:

Function AddUsers($userArray, $webUrl)
{
    foreach ($user in $userArray)
    {
        $username = $user[0];
        foreach ($group in $user[1])
        {
            Set-SPUser -Identity $username -Web $webUrl -Group $group
        }
    }
}



$userArray = @(
    @("domain\user1", @("Site Visitors", "Designers")),
    @("domain\user2", @("Site Visitors", "Designers")),
    @("domain\user3", @("Site Owners"))
    )

#Call function without brackets
AddUsers $userArray "http://my-sharepoint-site/"
link|improve this answer
feedback

protected by Dori Jul 1 '11 at 9:19

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.