Adding Active Directory Organization Units

Managing your Active Directory structure is essential for efficient user and resource management. This guide explains two methods for adding Active Directory Organizational Units (OUs): using the GUI (Graphical User Interface) and PowerShell commands.
Add Active Directory Organizational Units (OUs) via GUI
Launch Active Directory Users and Computers
Right click on your domain name on the left tree and select New then Organizational Unit

Create a name for your OU, then click OK

A new OU called Testing is now created.

Add Active Directory Organizational Units (OUs) via PowerShell
Launch PowerShell as Admin
Show the current list of AD groups
Get-ADOrganizationalUnit -Filter * | Format-Table DistinguishedName

Add the testing2 organizational unit
New-ADOrganizationalUnit Testing2 `
-Path “DC=jpc,DC=net” `
-ProtectedFromAccidentalDeletion $True

Verify the creation of the Organizational Unit

Conclusion
Active Directory Organizational Units (OUs) play a crucial role in organizing and managing your domain structure. Whether you opt for the GUI method for simplicity or PowerShell for automation, these tools enable you to create and manage OUs efficiently.
The choice between the two methods depends on your specific requirements and preferences. The GUI is intuitive and easy to use, while PowerShell provides greater flexibility for more complex OU management tasks.
By leveraging these methods, you can effectively structure your Active Directory for improved user and resource management.