Many people familiar with prior versions of Windows are curious what happened to the Local Administrator account that was always created by default. Does this account still exist, and how can you access it?
Recently I ran into an awkward situation where after disjoining a Windows 7 client machine from the domain, I was unable to log in to the computer. This was not because I had forgotten the local administrator password, but because the local administrator account was disabled (which is the default behavior in Windows 7). Like in Windows Vista, in Windows 7 the built-in Administrator's account is disabled by default. Furthermore, this account is not associated with any password. After doing some research, I found the following procedure that worked really well.
Basically there are 4 ways in order to activate the account:
To enable the built-in Administrator's account by using the Command Prompt please follow these steps:
1. First you'll need to open a command prompt in administrator mode by right-clicking and choosing "Run as administrator" (or use the Ctrl+Shift+Enter shortcut from the search box)
2. After that you only need to enter the simple command below to activate it.
net user administrator /active:yes
3. You should see a message that the command completed successfully. Log out, and you'll now see the Administrator account as a choice.
You'll note that there's no password for this account, so if you want to leave it enabled you should change the password.
Another way of activating the administrator account in Windows 7 is via Local Security Policy.
1. Type secpol.msc in the search bar and hit enter.
2. After the Local Security Policy pops up, navigate to Local Policies-> Security Options where you can see an entry that reads Accounts: Administrator account. Double click the entry to enable it.
To enable the built-in Administrator's account by using the Local Users and Groups snap-in please follow these steps:
Administrator's account is now enabled and configured with a password.
There is a 3rd method which advanced users can use. This method can be used during the installation process itself.
net user
Note how the Administrator account is there, yet the new user account has not been yet created.
net user *
If you log off you will now see the Administrator's account as a valid logon option.
Make sure you are logged on as your regular user account, and then open an administrator mode command prompt as above. Type the following command:
net user administrator /active:no
The administrator account will now be disabled, and shouldn¡¯t show up on the login screen anymore.