I'm working on my Unattended XPDVD for months now.. and I changed it everytime..
At first.. I liked to customize the settings myself.. so the install was not unattended and I could fill in my name / s*** myself..
Now.. I saw that WIHU had a nice user creation and the possibility to change the computername..
So.. I thought.. I'm going to make it unattended, and let WIHU startup with User Creation.
cmdlines.txt:
QUOTE
[COMMANDS]"wihu.cmd"
"net user eigenaar /delete"
"regedit /s autologin.reg"
"net user eigenaar /delete"
"regedit /s autologin.reg"
wihu.cmd
QUOTE
cmdow @ /HID
@echo off
SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce
REG ADD %KEY% /V WIHU /D "wihu.exe /SkipSoftware" /f
EXIT
autologin.reg@echo off
SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce
REG ADD %KEY% /V WIHU /D "wihu.exe /SkipSoftware" /f
EXIT
QUOTE
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"DefaultUserName"="Administrator"
"DefaultPassword"=""
"AutoAdminLogon"="1"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"DefaultUserName"="Administrator"
"DefaultPassword"=""
"AutoAdminLogon"="1"
For some reason, the user "Eigenaar" get created during setup.. (Eigenaar is dutch for "Owner"). As I don't want the user Eigenaar to be the user.. (do, not as name and not as dir in my Docs and Settings).
This is the reason why i delete the user and want windows to login the first time with Administrator, and start WIHU for the user creation.
For some reason.. It doesn't login and I get no Users in the Welcome screen of XP (so, i'm not able to login)
What I can do is boot into Safe Mode and create a user.. But not really a good way to install Windows, is it?
Thanks for you're help.
