@OHPRS Admin Please follow this official guide from Microsoft https://learn.microsoft.com/en-us/windows-server/remote/remote-server-administration-tools
You can install them directly via PowerShell, which often works even when the GUI doesn't show them:
# Install Active Directory Domain Services (dsa.msc)
Add-WindowsCapability -Online -Name "Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0"
# Install Group Policy Management Console (gpmc.msc)
Add-WindowsCapability -Online -Name "Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0"
😊 If my answer helped you resolve your issue, please consider marking it as the correct answer. This helps others in the community find solutions more easily. Thanks!