Currently there is no cmdlet to add a user to a user role, however its very easy to do using a combination of the Get-UserRole cmdlet and a bit of the SDK. $operatorsUserRole = Get-UserRole | where {$_.DisplayName -eq "Operations Manager Operators"} $operatorsUserRole.Users.Add("contoso\AdOperators")