Назад | Перейти на главную страницу

Как включить автоматический вход в систему для компьютера в домене Windows?

Мне нужно настроить общедоступный компьютер для автоматического входа в систему с учетными данными домена при включении. Когда он не был членом домена, эта опция была доступна на контролировать userpasswords2 панель, но после присоединения к домену эта настройка пропала.

Есть ли способ добиться этого?

Установите следующие настройки в реестре, и все должно работать:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon

AutoAdminLogon = 1
ForceAutoLogon = 1
DefaultUserName = username
DefaultPassword = password

Вы можете запустить инструмент SysInternals из http://live.sysinternals.com/Autologon.exe чтобы внести изменения в реестр немного проще.

Вы можете использовать редактор реестра, чтобы добавить информацию для входа в систему. Для этого выполните следующие действия:

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

от 1 (истина) до 0 (ложь), чтобы отключить функцию AutoAdminLogon после перезагрузки компьютера. Дважды щелкните запись AutoAdminLogon, введите 1 в поле Value Data и нажмите 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.

После перезагрузки компьютера и запуска Windows XP вы можете войти в систему автоматически.

Скопировано с: http://support.microsoft.com/kb/315231