I used this command to create a bunch of new groups.
$machine = get-content "C:\MyStuff\Citrix.txt"
Foreach ($line in $machine)
{
new-qadGroup -ParentContainer 'OU=Vendor_Citrix,OU=MHH Groups,DC=Acme,DC=org' -name $line -grouptype 'Security' -groupscope 'Universal'
}
it worked and created 81 new groups. I've noticed that when I go to the properties of any one of these 81 groups the GROUP NAME (Pre Windows 2000) looks like this: $SKI000-IC9FLN78VNUE
Why? And will that have an adverse effect in anyway on group/user behavior?
Thanks.