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.
我找到了通过命令提示符更改用户密码的语法。我正在使用:网络用户用户名密码
我已成功将密码更改为普通密码。我不知道如何将其更改为通行证。我将如何编写带有空格的密码的语法?例如,请解释我将如何写“我的新密码”。在 cmd...因为这不起作用:net user testuser2 我的新密码。
我确定这是区分大小写的,不是吗?如果它对密码的大小写敏感,为什么它不能将 sapces 识别为密码的一部分?
感谢您的时间。
尝试用引号将密码括起来,例如:
net user username "My new password"
通常,您可以将短语放在双引号中,例如“我的新密码”是您的命令行中有空格。