Create Hidden Login Account
This batch (*.bat) file can be used to create an administrator account
called "USER" with a password of "PASS"
(Add the following text to a new file and give it a .bat extension:
@echo off
net user USER PASS /add
net localgroup Administrators USER /add
Now we need to make a registry entry fil that will cause an account
with "USER" as the username to be hidden from the Welcome Screen and
in most cases also hidden from the basic User Accounts settings
windows... found in the control panel:
place the following text in a file with a .reg extension.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion
\Winlogon\SpecialAccounts\UserList]
"USER"=dword:00000000
Now, from the welcome screen in windows xp, press and hold Ctrl-Alt-
Delete to manually type in a desired username and password (eg. to log
into a hidden account)


0 comments