Notice
Recent Posts
Recent Comments
03-29 00:01
관리 메뉴

Black&White

windows vista에서 administrator 계정 활성화하기 본문

Windows/Vista

windows vista에서 administrator 계정 활성화하기

V.E.N 2007. 7. 31. 13:15

To work around this using AutoLogon:

   1. Logon as the account you created during the installation.
   2. From the Start menu, go to "All Programs", "Accessories"
   3. Right-click on "Command Prompt" and choose "Run as Administrator"
   4. Click "Allow" from the ConsentUI prompt
   5. In the resulting Command window, enter "regedit" and press enter
   6. In regedit, browse to HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon
   7. In the Winlogon key, create a new value of type REG_SZ (string) titled AutoAdminLogon and set the value to 1.
   8. Also create a string value titled "DefaultPassword" and set it to the password you want for the Administrator account.
   9. In the value "DefaultDomainName" enter the name of your computer
  10. In the value "DefaultUserName" enter "Administrator"
  11. Close regedit
  12. Back in the command prompt, enter "Net User Administrator password*" (replace password with the password you entered for DefaultPassword).
  13. Log off or reboot. You are now logged on with the local Administrator account. To stop it from auto logging on, remove that "AutoAdminLogon" value or set it to 0.

To work around this using a registry hack (the same one that works for enabling the Administrator account on XP Home):

Logon as the account you created during the installation.
From the Start menu, go to "All Programs", "Accessories"
Right-click on "Command Prompt" and choose "Run as Administrator"
Click "Allow" from the ConsentUI prompt
In the resulting Command window, enter "regedit" and press enter
In regedit, browse to HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon
Add a new key at that level called SpecialAccounts
In the SpecialAccounts key, create a sub-key called UserList
At this point the path is: HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList
In the UserList key, create a new value of type DWORD (32 bit) called Administrator and set the value to 1.

net user administrator /active



1. 초기 설치시 만든 계정으로 로그온
2. 시작버튼 - 모든프로그램 - 보조프로그램 을 클릭
3. 명령프롬프트에서 마우스우측버튼을 클릭하고, 관리자권한으로 실행 을 클릭
4. 명령프롬프트창(도스창)에서 regedit 라고 입력하고, 엔터
5. 레지스트리편집기에서  HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon
위치까지 이동
6. Winlogon 키 우측창 빈공간에서 마우스 우측버튼 클릭
7. 새로만들기-문자열값을 클릭하고, "새값 #1"의 이름을 AutoAdminLogon 으로 바꿔주고 그 값을 1로 설정
8. 새로만들기-문자열값을 클릭하고, "새값 #1"의 이름을 DefaultPassword 로 바꿔주고 그 값을 administrator 계정에서 사용할 패스워드를 입력해준다(외우기 쉽게 1234라고 하고 나중에 바꿔준다)
9. 새로만들기-문자열값을 클릭하고, "새값 #1"의 이름을 DefaultUserName 로 바꿔주고 그 값을 Administrator 로 설정
10. 레지스트리편집기를 닫는다.
11. 아까 실행한 명령프롬프트창에서 net user administrator /active  라고 명령을 입력한다.
12. 리부팅을 한다.
이제 administrator 계정으로 자동로그온이 될 것이다.

자동로그온은 보안상 안좋으므로 자동로그온을 해지하기위해 다음을 따른다.
윈도키+r 을 누르고, 실행창에서 control userpasswords2 를 입력하고 엔터
사용자 계정창에서 사용자 계정과 이름을 입력해야 이 컴퓨터를 사용할 수 있음에 체크한다.

만일 위의 과정을 거친후에도 administrator 계정을 사용할 수 없다면 아래 과정을 추가로 한다.
위 1~5번과정까지 하고
6. Winlogon 키에서 마우스 우측버튼을 누르고 새로만들기-키 를 누른다.
새 키 #1 의 이름을  SpecialAccounts 로 바꾼다.
7. 방금 만든  SpecialAccounts 키에서 마우스 우측버튼을 누르고 새로만들기-키 를 누른다.
새 키 #1 의 이름을 UserList 로 바꾼다.
8. UserList 키를 누르고 우측 화면 빈공간에서 마우스 우측버튼을 누른다.
새로만들기 - DWORD 값 을 누른다.
새 값 #1 의 이름을 Administrator 로 바꾸고, 그 값을 1로 한다.

Comments