我需要设置公开可用的计算机在开机时使用域凭据执行自动login。 当它不是一个域成员时,这个选项在控制userpasswords2面板上是可用的,但是域join后这个设置已经不存在了。
有什么办法可以做到这一点?
在registry中设置以下设置,它应该工作:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon AutoAdminLogon = 1 ForceAutoLogon = 1 DefaultUserName = username DefaultPassword = password
您可以使用registry编辑器添加您的login信息。 要这样做,请按照下列步骤操作:
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(假)在计算机重新启动后closuresAutoAdminLogonfunction。 双击AutoAdminLogon条目,在数值数据框中键入1,然后单击确定。
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后,可以自动login。
复制来自: http : //support.microsoft.com/kb/315231