Is there a way in C# to add a domain group to a local group on the machine? I need to add groups, not users. I have read a lot of articles about adding users, but nothing on adding groups. When I try to modify the code to use the group name, it has failed. Here is the code I am trying to use:
[code]
private
{
NewUser.CommitChanges();
grp = AD.Children.Find(
}
[/code]