Home
Operating System
Windows
Linux
Tutorial
Windows Server
About
☰
Join Domain with Command Line
# (client) Disable Firewall
netsh advfirewall set allprofiles state off
📋 Copy
Copied!
# (client) Check IP and DNS of the Domain
nslookup server.kh
✏️ Edit
📋 Copy
Copied!
# (client) Rename Computer
wmic computersystem where name="%computername%" call rename name="Client-Computer"
✏️ Edit
📋 Copy
Copied!
# (client) Restart Computer
shutdown /r /t 0
📋 Copy
Copied!
# (server) Find Network Basic Input/Output System
Get-ADDomain | Select NetBIOSName,DNSroot
📋 Copy
Copied!
# (client) Join Domain
Add-Computer -DomainName "server.kh" -Credential server-bios\administrator
✏️ Edit
📋 Copy
Copied!
# (client) Restart Computer
Restart-Computer
📋 Copy
Copied!
Labels
all
(31 )
autocad
(3 )
css
(2 )
linux
(5 )
op_system
(18 )
website
(4 )
windows
(14 )
windowsServer
(27 )