I need to add groups to folders where the group name gives a hint as to what folder it should be added so say I have a
system
application
logs
… etc.
folders and then
System Group
Application Group
Logs Group
…etc.
I know that I can do the testing with
FunctionFolderTest($folders){
foreach($folder in $folders){
if(!(Test-Path $folder)){
New-Item -Path $folder -ItemType Directory -force
}
}
}
And for the groups
function LocalGroupExist($groupName)
{
return [ADSI]::Exists(“WinNT://$env:COMPUTERNAME/$groupName,group”)
}
Which can be run through for each.
Assuming the groups exist and the folders exist having a list of both in a txt file how do I go about adding the right group to the right folder?