#<Sample CSV format
Group,Member
groupname1;username1
groupname2;username2
#>
Import-module activedirectory
Import-Csv c:\test.csv | %{
Remove-ADGroupMember -Identity $_.Group -Members $_.Member -Confirm:$false}
Group,Member
groupname1,username1
groupname2,username2
BTB -Delimiter ";" will not work for the sample file mentioned in my post because the header is separated with comma..
I may go back and change the "add user VB script" to PS.Now we are talking about adding.. adding will not prompt..