Como habilitar o logon automático para um computador no domínio do Windows?

7

Eu preciso configurar o computador disponível publicamente para executar o logon automático usando credenciais de domínio ao ligar. Quando não era um membro do domínio, essa opção estava disponível no painel control userpasswords2 , mas após a associação ao domínio, essa configuração passou.

Existe alguma maneira de conseguir isso?

    
por Artem Tikhomirov 17.05.2009 / 17:32

3 respostas

8

Você pode executar uma ferramenta SysInternals do link para fazer a alteração no registro com mais facilidade.

    
por 17.05.2009 / 18:35
8

Defina as seguintes configurações no registro, e isso deve funcionar:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon

AutoAdminLogon = 1
ForceAutoLogon = 1
DefaultUserName = username
DefaultPassword = password
    
por 17.05.2009 / 17:36
3

You can use Registry Editor to add your logon information. To do this, follow these steps:

Click Start, click Run, type regedit, and then click OK.
Locate the following registry key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
Double-click the DefaultUserName entry, type your account user name, and then click OK.
Double-click the DefaultPassword entry, type your account password under the Value Data box, and then click OK.

If there is no DefaultPassword value, create the value. To do this, follow these steps:
    In Registry Editor, click Edit, click New, and then click String Value.
    Type DefaultPassword as the value name, and then press Enter.
    Double-click the newly created key, and then type your password in the Value Data box.
If the Note:DefaultPassword registry entry does not exist, Windows XP automatically changes the value of the AutoAdminLogonregistry key

from 1 (true) to 0 (false) to turn off the AutoAdminLogon feature after the computer restarts. Double-click the AutoAdminLogon entry, type 1 in the Value Data box, and then click OK.

If there is no AutoAdminLogon entry, create the entry. To do this, follow these steps:
    In Registry Editor, click Edit, click New, and then click String Value.
    Type AutoAdminLogon as the value name, and then press Enter.
    Double-click the newly created key, and then type 1 in the Value Data box.
Exit Registry Editor.
Click Start, click Restart, and then click OK.

After your computer restarts and Windows XP starts, you can log on automatically.

Copiado de: link

    
por 17.05.2009 / 17:36