以下批处理脚本可以实现更改计算机名字的作用,具体作用是
- 修改电脑属性中显示的名字
- 更改DNS对应的记录,以便在网络上可以通过新的机器名进行访问
@echo off set /p newName=Please input the new computer name: echo Modifying registry keys... ::通过注册表修改本地机器名 reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ActiveComputerName /v ComputerName /d %newName% -f reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName /v ComputerName /d %newName% -f reg add HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Control\ComputerName\ComputerName /v ComputerName /d %newName% -f reg add HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\ComputerName\ActiveComputerName /v ComputerName /d %newName% -f reg add HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\ComputerName\ComputerName /v ComputerName /d %newName% -f reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Tcpip\Parameters /v Hostname /d %newName% -f reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Tcpip\Parameters /v "NV Hostname" /d %newName% -f reg add HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\Tcpip\Parameters /v Hostname /d %newName% -f reg add HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\Tcpip\Parameters /v "NV Hostname" /d %newName% -f echo Finish updating registry... ::更新DNS echo Update DNS... ipconfig /renew > NULL ipconfig /flushdns > NULL echo Finish updating DNS...
set computername=%newName%
有一点需要注意的是,并不是所有的机器名都被更新到了,如果在命令行窗口里面运行 “echo %computername%”,下面显示的依然会是原来的机器名。虽然在脚本最后一句修改了这个变量值,但是一旦重新打开一个cmd窗口,%computername%还是会还原回去。这个是由于早在系统启动的时候机器名就已经作为环境变量加载到进程里了,以后所有新建的进程都会默认继承这个变量。由于这个变量是存储在内存中的,所以想彻底更改机器名还是要重启电脑,或者在内存中更改所有父进程里面的变量值。