# Create the group in the same OU New-ADGroup -Name "EUC-Support" ` -SamAccountName "EUC-Support" ` -GroupCategory Security ` -GroupScope Global ` -Path "OU=AD_PowerShell,DC=Xceed,DC=com" # Add the user to the group Add-ADGroupMember -Identity "EUC-Support" -Members "HS" # Create the new OU New-ADOrganizationalUnit -Name "EUC-Admin" -Path "DC=Xceed,DC=com" # Move the EUC-Support group to the new OU Get-ADGroup -Identity "EUC-Support" | Move-ADObject -TargetPath "OU=EUC-Admin,DC=Xceed,DC=com"