Jump to content

Join Domain?


Recommended Posts

Hello everyone. I just want to create an unattended installation that automatically joins a domain. I've tried everything but it still doesn't join domain. I read somewhere that I might have to create a local user account in the answer file. Anyone know how to do that and am I even on the right track? Any help is appreciated. Thanks!

Link to comment
Share on other sites


Add the Microsoft-Windows-UnattendedJoin component to your answer file as follows: (for 32-bit x86 change the processorArchitecture value in the line accordingly)

<component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<Identification>

<Credentials>

<Password> domain account password </Password>

<Username> domain account in the form of domain\user </Username>

</Credentials>

<JoinDomain> name of the domain to join in AD naming format</JoinDomain>

<MachineObjectOU> OU to place machine account into in LDAP format OU="...",cn="....",dc="..." etc... </MachineObjectOU>

</Identification>

</component>

The credentials section is the account and password used to join the domain, this needs sufficient rights in AD.

The other settings are the name of the domain (in AD DNS format) and the full LDAP path for the OU where the machine account should be created.

Link to comment
Share on other sites

Thanks for the replies but I'm new to all this. I don't understand anything. How do I create a local user account in windows system image manager?

Basically when you are new you need to do a ton of reading on the documentation that comes with the AIK. It is confusing at times. Don't I know it! :rolleyes:

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...