Automated unsecure domain join

Marconino

New Member
Hi
for the first time i wanted to try this feature because i need to install a lot of laptop for a costumer in my office.
Ofc i can't join the domain with the standard feature, i wanted to know if i can use this "unsecure join" for join computers even outside my costumer network and what password i need to provide.
Do i have to create first the computers in AD then i can use this feature?
Does someone ever used this feature?
Thanks
1666606242148.png
 
Example 9: Add a computer to a domain using predefined computer credentials

From your client's domain, they run would a PS command to add a new computer account:
Code:
New-ADComputer -Name "Client02" -AccountPassword (ConvertTo-SecureString -String 'TempJoinPA$$' -AsPlainText -Force)

Name this computer in Unattended as "Client02", unsecure join password "TempJoinPA$$".
Each PC needs to have a separate computer account created for them, because the domain is trusting the PC -- not an user.

If you have many PC's to install, then leave the computer name blank (Setup will ask you at install time), and use a Post-Setup PS script (from the second half of Example 9) to join.

For testing, there are many online tutorials on playing around with AD on a set of VM's.
 
Back
Top