xarumanx Posted August 1, 2003 Posted August 1, 2003 I created one Unattended CD, that automatically joins my home-domain. Everything works fine, except one (major) thing.When the XP Setup is finished, you are prompted to login. If you login as Admin on the local machine, the batch processing starts and eversthing gets properly installed. But if i login with my domain account, windows starts (it takes an unusual long time) and no batch processing is started. Any idea why?
Mpak Posted August 1, 2003 Posted August 1, 2003 Which local group does your domain user belong to? If your DOMAIN\User after installation belongs to LOCAL_MACHINE\Users, you cannot start installation. Your domain user should be in group LOCAL_MACHINE\Administrators.
xarumanx Posted August 2, 2003 Author Posted August 2, 2003 Mpak, thanks for the hint, it worked. After adding the Domain User to the local Administrators, the batch processing starts
galiandin Posted April 22, 2005 Posted April 22, 2005 How do you automatically join a domain in unattended setup?
Rambler Posted April 22, 2005 Posted April 22, 2005 How do you automatically join a domain in unattended setup?<{POST_SNAPBACK}>Put this to winnt.sif/unattend.txt:[Identification] JoinDomain = domain_name DomainAdmin = domain_admin_name DomainAdminPassword = "password"Substitute the values naturally.
Martin Zugec Posted April 22, 2005 Posted April 22, 2005 Using RunOnceEx:REG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoAdminLogon /d 1 /fREG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultDomainName /d "DOMAIN" /fREG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultUserName /d "Domain_Admin" /fREG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultPassword /d "password" /fBTW you should use GP to autoconfigure administrator group globally.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now