Quantcast
Channel: PowerShell.com – PowerShell Scripts, Tips, Forums, and Resources
Viewing all articles
Browse latest Browse all 6937

Pre-Windows 2000 name ??

$
0
0

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.  

 


Viewing all articles
Browse latest Browse all 6937

Trending Articles