Is there a way to add/remove users from groups using csv file?

I have a process to add/remove users from groups everyday.  I currently use Dovestone's AD Bulk Users.  It's cumbersome to manage and has limitations.   I'd rather use Active Roles instead if possible.

I tried the Synchronization tool, but haven't seen a way to add or remove users from groups. 

Thank you

  • These bulk add and removes of users from groups - is there any criteria that could be applied (contents of their properties) that would allow you use Dynamic Groups or Group Families?

    In the past, I have also implemented an Automation Workflow where I setup a parameter that prompts the user for a file name containing users and the group they should be added to or removed from.

    The workflow then fired a simple Powershell script that read the file and added (removed) the users to (from) the groups.

    The internal layout of the file was like this:

    <user><comma><group name><comma><ADD or REMOVE>

    'Hope that gets your wheels turning.