HOTSPOT
Your network contains one Active Directory forest named contoso.com. The forest contains a single domain. All
domain controllers run Windows Server 2012 R2.
The domain contains an organizational unit (OU) named Groups that contains a universal security group named
Group1.
You run the following command from Windows PowerShell.Get-ADGroup Group1 –properties managedby | New-ADGroup –name “Group2” –SamAccountName group2 –
groupcategory distribution –groupscope global
You need to identify which properties of Group1 will be copied to Group2.
Hot Area:

Managed by attribute is copied to Group 2.
9
0
Tested and group scope, type, and permissions will be carried over. Members, member of etc will not unless specified.
1
2
This is correct indeed, tested as well
0
0
Group scope and type will be carried over only if you do not insert:
“groupcategory distribution –groupscope global”
The full command is
Get-ADGroup Group1 –properties managedby | New-ADGroup –name “Group2” –SamAccountName group2 –
groupcategory distribution –groupscope global
So only the property “Managed By” is copied
2
0