添加用户到Windows使管理员图标消失!
我使用命令“net user”向窗口添加一个新的管理员用户,如下所示:
网络用户 myuser11 myuser11 /add net
本地组管理员 myuser11 /add
重新启动 Windows 后,我只能看到“myuser”的图标,而默认的 Windows“管理员”登录图标消失了!
“管理员”文件仍然存在,我可以在 ctrl+alt+del 后以“管理员”身份登录,但我当然需要在欢迎屏幕中显示“管理员”图标,
我该如何解决这个问题?
我用的是 windows xp sp3
谢谢
I used the command "net user" to add a new admin user to windows like that:
net user myuser11 myuser11 /add net
localgroup Administrators myuser11 /add
the problem that after restart windows I only see the icon of the "myuser" and the default windows "Administrator" login icon disappeared !!
the "Administrator" files still exists and I can login as "Administrator" after ctrl+alt+del but I need of course to display the "Administrator" icon in welcome screen
how I fix that ?
I use windows xp sp3
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此行为是设计使然。如果您有其他具有管理员权限的用户,Windows 将不再显示“管理员”登录信息。
我相信您可以在注册表中更改它:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList
然后将“Administrator”添加到该列表中作为 DWORD 值(如果它尚不存在)并将其值设置为1.我已经有一段时间没有使用XP了,所以这可能不完全正确,但我认为是......
This behaviour is by design. If you have another user with Administrator rights, Windows doesn't show the "Administrator" login any more.
You can change it in the registry I believe:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList
Then add 'Administrator' to that list as a DWORD value (if it's not there already) and set it's value to 1. It's been a while since I used XP, so that might not be exactly correct, but I think it is...