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.
有没有办法使用批处理脚本更改用户名/帐户名?比如把用户名“testing”改成“TESTING123”、“Testing”还是“testing123”?谢谢你的帮助。
有一种方法可以通过 wmic 做到这一点:
wmic useraccount where name="old_name" call rename "new_name"
据我所知,您不能批量执行此操作。您可以创建新帐户并删除旧帐户,但不能重命名它们:)
对于在 cmd 提示符下批量输入的所有用户帐户内容net user /?,甚至只是net /?.
net user /?
net /?
希望这可以帮助。