Users Adding
Friday, November 5, 2010
, Posted by Tech Point at 8:55 PM
Adding users In Windows XP automatic during Windows installation
Know in this lecture i teach you how to create automatic user accounts during windows installation.
Two methods of creating automatic user accounts during windows installation.
1.NET USER
2.OOBEINFO.INI
First one i teach you OONEINFO.INI
OOBEINFO.INI METHOD
This method is very short. So open first notepad and paste this code.
[UserInfo] Identity000="NewUser-Admin" Identity001="NewUser-User"
In this code i am create TWO user account 1st one admin & 2nd one user.In this method you create maximum 6 user accounts.See example
Example:
[UserInfo] Identity000="NewUser-Admin" Identity001="NewUser-User"Identity002="NewUser-Ali" Identity003="NewUser-Awais" Identity004="NewUser-Haider" Identity005="NewUser-anonymouse"
See this Example code.In this code I am creating 6 users accounts.
Once you fininsh your editing and create all accounts save this file in $OEM$\$$\system32\oobe directory with this name OOBEINFO.INI
NETUSER METHOD
This method original outline of adding users in windows XP.This method work on across all NT platforms and you create user accounts on your choice.In this method not limits on creating user accounts.
I am also reffer this method.
Open notepad and paste this code.
[COMMANDS] "useraccounts.cmd"
Save this file with cmdlines.txt name and save in $OEM$ directory
After this make a file for creating user accounts.
Open notepad and paste this code.
net user teachetech 1234567890 /add
net localgroup Administrators teachetech /add
net accounts /maxpwage:unlimited
REGEDIT /S autologon.regEXIT
Save this file in $OEM$ folder with this name useraccounts.cmd.
Auto Logon
Make one file for autologon user.when windows complete install windows automatic logon your target user account.
Open notepad again and paste this code
Make one file for autologon user.when windows complete install windows automatic logon your target user account.
Open notepad again and paste this code
Save this file In $OEM$ Directory with this name autologon.reg.Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon] "DefaultUserName"="teachetech" "DefaultPassword"="1234567890" "AutoAdminLogon"="1"
Total 3 files create and save in $OEM$ folder.1st cmdlines.txt, 2nd useraccounts.cmd and 3rd autologon.reg
Currently have 0 comments: