从命令行更改 Windows 主机名

从命令行更改 Windows 主机名

这个问题与https://stackoverflow.com/questions/54989/change-windows-hostname-from-command-line,但我的情况不同。netdom 工具在未加入域的计算机上不起作用。我尝试过从注册表设置主机名,但我想知道是否有其他方法可以从命令行设置。

答案1

直接从您提供的链接:

wmic computersystem where name="OLDNAME" call rename name="NEWNAME"

然后重新启动

shutdown /r /t 0

相关内容