Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想运行这个命令: reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultPassword /d newpasswd /t REG_SZ /f 在通过命令行连接到 Windows 主机后。
现在,我可以通过 ssh 以管理员身份连接到它,但运行该命令不会导致任何更改发生。
有谁知道为什么?我有什么选择?
这可能是因为您的守护程序与您的系统架构不匹配。我遇到了同样的问题,我的 SSHd 是 32 位,我试图更改 64 位机器上的注册表项。将 SSHd 升级到 64 位对我有用。