web-dev-qa-db-fra.com

Comment activer la connexion automatique pour un ordinateur dans le domaine Windows?

J'ai besoin de configurer un ordinateur accessible au public pour effectuer une connexion automatique à l'aide des informations d'identification de domaine lors de la mise sous tension. Lorsque ce n'était pas un membre de domaine, cette option était disponible sur Contrôle userpasswords2 Panneau, mais après la jointure de domaine, ce paramètre est parti.

Y a-t-il un moyen d'accomplir cela?

7
Artem Tikhomirov

Vous pouvez utiliser l'éditeur de registre pour ajouter vos informations de connexion. Pour le faire, suivez ces étapes:

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

de 1 (vrai) à 0 (FALSE) pour désactiver la fonction AutoadminLogon après le redémarrage de l'ordinateur. Double-cliquez sur l'entrée AutoadminLogon, tapez 1 dans la zone de données de valeur, puis cliquez sur 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.

Après que votre ordinateur redémarre et Windows XP Démarre, vous pouvez vous connecter automatiquement.

Copié de: http://support.microsoft.com/kb/315231

3
Neobyte