How to join an Active Directory domain using the netdom command

To support me, you can subscribe to the channel, share and like the videos, disable your ad blocker or make a donation. Thank you!

Hello,

Join an Active Directory domain with the netdom command.

Presentation of different alternatives for joining an Active Directory domain:
How to join an Active Directory domain with System Properties (1/9)
Good domain joining practices - Delegation and pre-staging (2/9)
How to join an Active Directory domain using the Settings Menu (3/9)
How to join an Active Directory domain using PowerShell (4/9)
How to join an Active Directory domain with djoin (offline) (5/9)
How to join an Active Directory domain with netdom (6/9)
How to join an Active Directory domain with DSC (7/9)
How to join an Active Directory domain with ICD (8/9)
How to join an Active Directory domain with MDT (9/9) 

Netdom command to join a domain

# We have the possibility to define the destination OU (not necessary if the object is already present in the OU)
# Installation of components containing netdom:
# Requires local AD Remote Server Administration Tools (RSAT) and that the computer is renamed upstream.
Get-WindowsCapability -Online -Name rsat*Active* | Add-WindowsCapability -Online
# In PowerShell (not Powershell ISE) :
netdom.exe join $env:COMPUTERNAME /domain:Domain.tld /UD:Domain\tech1 /PD:* /ou:'ou=computers-demo,dc=domain,dc=tld' /reboot

Video : How to join an Active Directory domain using the netdom command

Related links