August 1, 200323 yr 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?
August 1, 200323 yr 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.
August 2, 200323 yr Author Mpak, thanks for the hint, it worked. After adding the Domain User to the local Administrators, the batch processing starts
April 22, 200521 yr 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.
April 22, 200521 yr 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.
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now