Hello,
I am building delegation groups for a new OU structure design and the naming convention is based on the group role and site location (ie ADL- admin local, newyork - site. ) I would like to know if it is possible to create new groups based on the different sites from a text file/csv with the group name added to a string to conform with the naming convention?
This is what I had in mind:
$strGrpSite = Get-Content .\Sites.txt
$strGrpSite|Foreach{
New-ADGroup “ADL-”+$_“_Create” -GroupScope DomainLocal -GroupCategory Security -path “OU=OU=TestOU,DC=testdomain,DC=com”
}
The intended output would be:
New group created: ADL-newyork_Create
What I do not know is the correct syntax to join the strings to form the groupname.