How to Install ADUC (Active Directory Users and Computers) on Windows Server 2008 (Non-R2) as a Member Server


2 views

Many administrators face confusion when trying to install Active Directory management tools on Windows Server 2008 (original version). Unlike Windows Server 2003 where you simply ran adminpak.msi, the process changed significantly with Server 2008.

The key distinction lies in Microsoft's redesign of administration tools distribution:

Windows Server 2003: adminpak.msi (standalone installer)
Windows Server 2008: RSAT (Remote Server Administration Tools)
Windows Server 2008 R2: RSAT with different component structure

For Windows Server 2008 (non-R2):

1. Open Server Manager (Start > Administrative Tools > Server Manager)
2. Navigate to Features > Add Features
3. Expand "Remote Server Administration Tools"
4. Select "Role Administration Tools"
5. Check "AD DS and AD LDS Tools"
6. Complete the installation wizard

If you only see limited tools like File Services and Print Services:

  • Verify you're using original 2008 (6.0 build) not R2 (6.1 build)
  • Check the server is domain-joined (required for AD tools)
  • Ensure proper network connectivity to domain controllers

If the GUI method fails, try this PowerShell approach:

Import-Module ServerManager
Add-WindowsFeature RSAT-ADDS

After installation, confirm the tools are available:

Test-Path "C:\Windows\System32\dsa.msc"  # Should return True
Get-Command *-AD*  # Should list available AD cmdlets

Many administrators migrating from Windows Server 2003 expect to find adminpak.msi for installing management tools on Windows Server 2008. The paradigm shift in Windows Server 2008 introduces a different approach through Server Manager and optional features.

For Windows Server 2008 (not R2), you'll need to download the Remote Server Administration Tools (RSAT) package from Microsoft. Unlike later versions where RSAT is available through Features, the original Windows Server 2008 requires manual installation.

# PowerShell command to verify available features
Get-WindowsFeature | Where-Object {$_.Name -like "*RSAT*"}

1. Download RSAT for Windows Server 2008 from Microsoft's official site
2. Run the installer package (Windows6.0-KB941314-x86.msi or x64 version)
3. After installation, enable the feature through Server Manager:

# Alternative method using DISM (if Server Manager unavailable)
dism /online /enable-feature /featurename:RemoteServerAdministrationTools

Once installed, you should find Active Directory Users and Computers in Administrative Tools. To verify through command line:

# Check if ADUC snap-in is registered
reg query "HKLM\SOFTWARE\Microsoft\MMC\SnapIns\{E355E538-1C2E-11D0-8C37-00C04FD8FE93}"

If you only see limited RSAT options (File Services, Print Services), you likely have an incomplete installation. Try:

  • Reinstalling the RSAT package
  • Checking Windows Update for additional components
  • Verifying the server meets all prerequisites

When ADUC isn't available, consider these PowerShell alternatives for user management:

# Example: Create new AD user
New-ADUser -Name "John.Doe" -GivenName "John" -Surname "Doe" 
-SamAccountName "jdoe" -UserPrincipalName "jdoe@domain.com" 
-AccountPassword (ConvertTo-SecureString "P@ssw0rd" -AsPlainText -Force) 
-Enabled $true