Joining a Computer to a Domain Using MDT 2013 Update 1
VMware Network Adapter – netsh interface ip set dns "Ethernet" static xxx.xxx.xxx.xxx
Physical Machine Network Adapter – netsh interface ip set dns "Local Area Connection" static xxx.xxx.xxx.xxx
Const JOIN_DOMAIN = 1
Const ACCT_CREATE = 2
Const ACCT_DELETE = 4
Const WIN9X_UPGRADE = 16
Const DOMAIN_JOIN_IF_JOINED = 32
Const JOIN_UNSECURE = 64
Const MACHINE_PASSWORD_PASSED = 128
Const DEFERRED_SPN_SET = 256
Const INSTALL_INVOCATION = 262144
strDomain = "bjtech.edu"
strPassword = "P@55w0rd2"
strUser = "Administrator"
Set objNetwork = CreateObject("WScript.Network")
strComputer = objNetwork.ComputerName
Set objComputer = GetObject("winmgmts:{impersonationLevel=Impersonate}!\\" & _
strComputer & "\root\cimv2:Win32_ComputerSystem.Name='" & _
strComputer & "'")
ReturnValue = objComputer.JoinDomainOrWorkGroup(strDomain, _
strPassword, strDomain & "\" & strUser, NULL, _
JOIN_DOMAIN + ACCT_CREATE)
How can I add the system to a specific OU after joining it to the domain?
Does this also work for Windows 7? I followed your instructions and I just cannot get it to work in my lab.