[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[文本处理] 批处理修改计算机名后,如何实现无需重启即可生效?

下面是一段一键修改计算机名(不需要重启电脑)的代码,修改后能不能加入贴子代码中,实现不要重启电脑就能改计算机名?


下面是一段一键修改计算机名(不需要重启电脑)的代码:
  1. :name
  2. set /p cname=请输入计算机名:
  3. echo REGEDIT4 >c:\windows\reg.reg
  4. echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName] >> c:\windows\reg.reg
  5. echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName] >> c:\windows\reg.reg
  6. echo "ComputerName"="%cname%" >> c:\windows\reg.reg
  7. echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ActiveComputerName] >> c:\windows\reg.reg
  8. echo "ComputerName"="%cname%" >> c:\windows\reg.reg
  9. echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Control\ComputerName\ComputerName] >> c:\windows\reg.reg
  10. echo "ComputerName"="%cname%" >> c:\windows\reg.reg
  11. echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters] >> c:\windows\reg.reg
  12. echo "NV Hostname"="%cname%" >> c:\windows\reg.reg
  13. echo "Hostname"="%cname%" >> c:\windows\reg.reg
  14. echo [HKEY_USERS\S-1-5-18\Software\Microsoft\Windows\ShellNoRoam] >> c:\windows\reg.reg
  15. echo @="%cname%" >> c:\windows\reg.reg
  16. echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\ComputerName\ActiveComputerName] >> c:\windows\reg.reg
  17. echo "ComputerName"="%cname%" >> c:\windows\reg.reg
  18. echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Tcpip\Parameters] >> c:\windows\reg.reg
  19. echo "NV Hostname"="%cname%" >> c:\windows\reg.reg
  20. echo "Hostname"="%cname%" >> c:\windows\reg.reg
  21. echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon] >> c:\windows\reg.reg
  22. echo "DefaultDomainName"="%cname%" >> c:\windows\reg.reg
  23. echo "AltDefaultDomainName"="%cname%" >> c:\windows\reg.reg
  24. regedit /s c:\windows\reg.reg
  25. cmd
复制代码

原帖:
http://www.bathome.net/thread-38914-1-1.html
下面最终代码,但代码有时有用,有时失效,有没有解决办法?
http://www.bathome.net/redirect. ... 8914&pid=180866

本帖最后由 yhcfsr 于 2019-1-15 13:37 编辑

加入域的计算机可能无法更改.
  1. @echo off
  2. set /p name=请输您的计算机名:
  3. reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ActiveComputerName" /v ComputerName /t reg_sz /d %name% /f >nul 2>nul
  4. reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters" /v "NV Hostname" /t reg_sz /d %name% /f >nul 2>nul
  5. reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters" /v Hostname /t reg_sz /d %name% /f >nul 2>nul
  6. echo.
  7. echo 修改计算机名完毕
  8. pause&exit
复制代码
QQ 33892006

TOP

  1. @echo off
  2. ::1.设置环境变量
  3. set MASK=255.255.255.0
  4. set GATEWAY=192.168.31.1
  5. set DNS1=114.114.114.114
  6. set DNS2=114.114.114.110
  7. set WINS=192.168.31.1
  8. set run_log=%temp%\run_log.txt
  9. ::2.运行环境检查
  10. echo. >%run_log%
  11. echo. >>%run_log%
  12. echo ======================================>>%run_log%
  13. echo 运行时间 %date% %time% >>%run_log%
  14. echo ======================================>>%run_log%
  15. del %temp%\mac.txt >nul 2>nul
  16. del %temp%\a.txt >nul 2>nul
  17. wmic nic >nul 2>nul
  18. wmic nic >nul 2>nul >%temp%\a.txt && (find /i "MACAddress"  %temp%\a.txt >nul 2>nul || echo ************运行权限不够,请以管理员运行*****************  >>%run_log% && start  %run_log% &&exit)
  19. ::3.获取本机所有MAC,地址,格式为 XX-XX-XX-XX-XX-XX
  20. wmic nic get MACAddress >%temp%\name.txt && for /f "skip=1" %%i in ('type %temp%\name.txt') do for /f "tokens=1-6 delims=:" %%I in ("%%i") do echo %%I-%%J-%%K-%%L-%%M-%%N>>%temp%\mac.txt
  21. ::4.将获取到的本机MAC地址逐一到本批处理后面的列表去查找,匹配的通常是本地连接的MAC连接,将匹配的MAC地址保存下来。
  22. ::      注1:这种方式可以应对电脑上安装虚拟机,或者机器是win7及以上的系统,会有多个MAC。
  23. ::      注2:至少要有一个匹配MAC,如果找不到任何匹配MAC,则报错退出。这可以避免在没有收集MAC的机器上运行时,错误修改原来的信息。
  24. del %temp%\exist-mac.txt   >nul 2>nul
  25. for /f  %%i in (%temp%\mac.txt) do find /i "%%i" %0 >nul 2>nul && echo %%i>%temp%\exist-mac.txt
  26. if exist %temp%\exist-mac.txt (for /f %%i in (%temp%\exist-mac.txt) do set MAC=%%i) else (echo ************未找到匹配的MAC项,中断批处理执行************  >>%run_log%   &&start %run_log%  &&exit)
  27. ::5.获取找到MAC地址对应的网络连接名称,通常是本地连接,
  28. ::      注1:对于一些多网卡环境,如机器装有多块网卡,会生成本地连接 2的名称, 注意:2前面有个空格,
  29. ::      注2:还有一种情况,本地连接的名称被改,在学校机房,干这种事情的人大有人在
  30. for /f "tokens=1-6 delims=-" %%i in ("%MAC%") do set MAC1=%%i:%%j:%%k:%%l:%%m:%%n
  31. wmic nic where MACaddress="%MAC1%" get NetConnectionID >%temp%\mac1.txt && for /f "tokens=* skip=1" %%i in ('type %temp%\mac1.txt') do if NOT "%%i"=="" set NetConnectionID=%%i
  32. :intercept
  33. if "%NetConnectionID:~-1%"==" " set "NetConnectionID=%NetConnectionID:~0,-1%"&goto intercept
  34. ::6.获取预设的计算机名\IP地址\计算机描述信息
  35. for /f "tokens=1-4" %%i in ('more /e +10 %0 ^|find /i "%mac%"') do set name=%%i&& set IP=%%j&&  set desc=%%l
  36. if "%name%"=="" (echo ********************匹配MAC预设计算机信息不存在,本程序将退出********************  >>%run_log%   &&start %run_log%  &&exit)
  37. if "%ip%"==""   (echo ********************匹配MAC预设IP地址信息不存在,本程序将退出********************  >>%run_log%   &&start %run_log%  &&exit)
  38. if "%desc%"=="" (echo ********************匹配MAC预设计算机描述信息不存在,本程序将退出******************  >>%run_log%   &&start %run_log%  &&exit)
  39. for /f "tokens=1-3 skip=2" %%i in ('reg query "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\lanmanserver\parameters" /v srvcomment 2^>nul') do set current_desc1=%%k
  40. for /f "tokens=1-3 skip=2" %%i in ('reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters" /v srvcomment 2^>nul') do set current_desc2=%%k
  41. wmic nicconfig where MACaddress="%MAC1%" get IPaddress>%temp%\a.txt && for /f "skip=1 delims=,{} " %%i in ('type %temp%\a.txt') do set current_ip=%%~i
  42. wmic nicconfig where MACaddress="%MAC1%" get IPSubnet>%temp%\a.txt &&for /f "skip=1 delims=,{} " %%i in ('type %temp%\a.txt') do set IPSubnet=%%~i
  43. wmic nicconfig where MACaddress="%MAC1%" get DefaultIPGateway>%temp%\a.txt &&for /f "skip=1 delims=,{} " %%i in ('type %temp%\a.txt') do set DefaultIPGateway=%%~i
  44. wmic nicconfig where MACaddress="%MAC1%" get DNSServerSearchOrder >%temp%\a.txt  && for /f "tokens=1-8 skip=1 delims=,{} " %%i in ('type %temp%\a.txt') do set current_DNS1=%%~i& set current_DNS2=%%~j& set DNS3=%%~k&  set DNS4=%%~l
  45. wmic nicconfig where MACaddress="%MAC1%" get WINSPrimaryServer>%temp%\a.txt &&for /f "skip=1 delims=,{} " %%i in ('type %temp%\a.txt') do set WINSPrimaryServer=%%i
  46. echo. **************************信息汇总********************************
  47. echo  网络连接名称    【%NetConnectionID%】
  48. echo  MAC地址为       【%mac%】
  49. echo  当前IP地址      【%current_ip%】 预设IP地址     【%IP%】
  50. echo  当前子网掩码    【%IPSubnet%】 预设子网掩码   【%MASK%】
  51. echo  当前默认网关    【%DefaultIPGateway%】 预设默认网关   【%GATEWAY%】
  52. echo  当前DNS1        【%current_DNS1%】 预设DNS1       【%DNS1%】
  53. echo  当前DNS2        【%current_DNS2%】 预设DNS2       【%DNS2%】
  54. echo  当前WINS服务器  【%WINSPrimaryServer%】 预设WINS服务器 【%WINS%】
  55. echo.
  56. echo  当前计算机名    【%current_name1%】 预设计算机名   【%name%】           
  57. echo  当前描述        【%current_desc1%】 预设计算机描述 【%desc%】         
  58. echo. *********************************************************************
  59. echo.
  60. ::7.执行判断、修改计算机名\IP地址\计算机描述信息
  61. if "%current_desc1%"=="%desc%" (echo 计算机注释1符合要求,跳过修改>>%run_log% ) else (echo 正在修改计算机注释1 && reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\lanmanserver\parameters" /v srvcomment /t reg_sz /d %desc% /f >nul 2>nul    && echo 修改计算机注释1成功 >>%run_log% || echo  ********************修改计算机注释1失败 ********************   >>%run_log%)
  62. if "%current_desc2%"=="%desc%" (echo 计算机注释2符合要求,跳过修改>>%run_log%) else (echo 正在修改计算机注释2 && reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters" /v srvcomment /t reg_sz /d %desc% /f >nul 2>nul && echo 修改计算机注释2成功>>%run_log%  || echo  ********************修改计算机注释2失败 ********************  >>%run_log%)
  63. if "%name%"=="%computername%" (
  64.     >>%run_log% echo 计算机名符合要求,跳过修改
  65. ) else (
  66.     echo 正在修改计算机名
  67.     REM wmic computersystem where "name='%computername%'" call rename %name%
  68.     call :ChangeName
  69.     if errorlevel 1 (
  70.         >>%run_log% echo ********************修改计算机名失败 ********************
  71.     ) else (
  72.         >>%run_log%echo 修改计算机名成功
  73.     )
  74. )
  75. if "%current_ip%"=="%IP%" (echo IP地址符合要求,跳过修改>>%run_log%) else (set change_pro=IP地址)
  76. if "%IPSubnet%"=="%MASK%" (echo 子网掩码符合要求,跳过修改>>%run_log%) else (set change_pro=%change_pro%、子网掩码)
  77. if "%DefaultIPGateway%"=="%GATEWAY%" (echo 默认网关地址符合要求,跳过修改>>%run_log%) else (set change_pro=%change_pro%、默认网关)
  78. if "%change_pro%"==""  (echo IP地址\子网掩码\默认网关符合要求,跳过修改>>%run_log%) else   (echo 正在修改%change_pro% &&  netsh interface ip set address "%NetConnectionID%" static %IP% %Mask% %GATEWAY% 1 >nul 2>nul   && echo 修改%change_pro%成功 >>%run_log%   || echo  ********************修改%change_pro%失败 ********************  >>%run_log%)
  79. if "%current_DNS1%"=="%DNS1%" (echo DNS1地址符合要求,跳过修改>>%run_log%) else (echo 正在修改DNS1地址 &&  netsh interface ip set dns "%NetConnectionID%" static %DNS1% register=PRIMARY >nul 2>nul   && echo 修改DNS1地址成功 >>%run_log%   || echo  ********************修改DNS1地址失败 ********************  >>%run_log%)
  80. if "%current_DNS2%"=="%DNS2%" (echo DNS2地址符合要求,跳过修改>>%run_log%) else (echo 正在修改DNS2地址 &&  netsh interface ip add dns "%NetConnectionID%"  %DNS2% index=2 >nul 2>nul   && echo 修改DNS2地址成功 >>%run_log%   || echo  ********************修改DNS2地址失败 ********************  >>%run_log%)
  81. if "%WINSPrimaryServer%"=="%WINS%" (echo WINS地址符合要求,跳过修改>>%run_log%) else (echo 正在修改WINS地址 &&  netsh interface ip set wins "%NetConnectionID%" static %WINS%  >nul 2>nul  && echo 修改WINS地址成功 >>%run_log%   || echo  ********************修改WINS地址失败 ********************  >>%run_log%)
  82. start %run_log%
  83. goto :eof
  84. :ChangeName
  85. set cname=%name%
  86. echo REGEDIT4 >c:\windows\reg.reg
  87. echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName] >> c:\windows\reg.reg
  88. echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName] >> c:\windows\reg.reg
  89. echo "ComputerName"="%cname%" >> c:\windows\reg.reg
  90. echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ActiveComputerName] >> c:\windows\reg.reg
  91. echo "ComputerName"="%cname%" >> c:\windows\reg.reg
  92. echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Control\ComputerName\ComputerName] >> c:\windows\reg.reg
  93. echo "ComputerName"="%cname%" >> c:\windows\reg.reg
  94. echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters] >> c:\windows\reg.reg
  95. echo "NV Hostname"="%cname%" >> c:\windows\reg.reg
  96. echo "Hostname"="%cname%" >> c:\windows\reg.reg
  97. echo [HKEY_USERS\S-1-5-18\Software\Microsoft\Windows\ShellNoRoam] >> c:\windows\reg.reg
  98. echo @="%cname%" >> c:\windows\reg.reg
  99. echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\ComputerName\ActiveComputerName] >> c:\windows\reg.reg
  100. echo "ComputerName"="%cname%" >> c:\windows\reg.reg
  101. echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Tcpip\Parameters] >> c:\windows\reg.reg
  102. echo "NV Hostname"="%cname%" >> c:\windows\reg.reg
  103. echo "Hostname"="%cname%" >> c:\windows\reg.reg
  104. echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon] >> c:\windows\reg.reg
  105. echo "DefaultDomainName"="%cname%" >> c:\windows\reg.reg
  106. echo "AltDefaultDomainName"="%cname%" >> c:\windows\reg.reg
  107. regedit /s c:\windows\reg.reg
  108. goto :eof
  109. ::以下为预设信息区域
  110. 计算机名        新规划地址        MAC地址        计算机描述
  111. 12F-JF01-A002        192.168.12.102        54-04-a6-66-bd-bd        12楼机房A02
  112. 12F-JF01-A003        192.168.12.103        00-30-67-ba-0c-ac        12楼机房A03
  113. 12F-JF01-A004        192.168.12.104        00-e0-62-0b-1f-6c        12楼机房A04
  114. 12F-JF01-A005        192.168.12.105        bc-ae-c5-5d-65-c0        12楼机房A05
  115. 12F-JF01-A006        192.168.12.106        00-e0-66-02-29-5e        12楼机房A06
  116. 12F-JF01-A007        192.168.12.107        50-e5-49-be-c0-dc        12楼机房A07
  117. 12F-JF01-A008        192.168.12.108        00-e0-66-0d-71-d9        12楼机房A08
  118. 12F-JF01-A009        192.168.12.109        00-e0-66-02-dd-d8        12楼机房A09
复制代码
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 3# Batcher


    更改是成功了,不过我重启后,出现在无法登录了?

TOP

回复 4# 滴血雄鹰


    分别执行顶楼代码和“最终代码”没有问题,执行3楼代码之后就出现了这个问题是吗?3楼代码只是把那两个代码合并起来,没有其他改动。
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 5# Batcher

一楼我发的就是时灵时不灵的,用3楼你的代码修改成功,但重启后现出现上述问题,能不能完整融合下代码?

TOP

本帖最后由 ivor 于 2019-1-15 16:09 编辑

  1. Rename-Computer -NewName (Read-Host "Enter new computer name")#-Restart
复制代码
1

评分人数

TOP

本帖最后由 滴血雄鹰 于 2019-1-15 15:37 编辑

回复 5# Batcher


又试了下,3楼的代码可行,能不能在计算机改名后 再加行代码?
@echo off
ping -n 4 127.1 >nul    ::等待3秒
taskkill /f /im abc.exe
start C:\a\abc.exe
exit

TOP

本帖最后由 1015710158 于 2019-1-15 15:49 编辑

set /p name=请输入计算机名称:
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ActiveComputerName" /v ComputerName /t reg_sz /d %name% /f
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ComputerName" /v ComputerName /t reg_sz /d %name% /f
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters" /v "NV Hostname" /t reg_sz /d %name% /f
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters" /v Hostname /t reg_sz /d %name% /f

TOP

本帖最后由 flashercs 于 2019-1-15 16:05 编辑

注册表更改要慎用!!!
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet]是ControlSet集合中的某一个,一般是ControlSet001,它是个映射,假设CurrentControlSet映射的是ControlSet001,那么当你更改CurrentControlSet的内容时,[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001]
随之改变;为何要同一个键要更改两次?
同样的注册表项 映射 还有HKEY_CLASS_ROOT,HKEY_CURRENT_USER

TOP

回复 8# 滴血雄鹰


    把这个代码的第2到4行放在3楼代码的第80行下面
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

返回列表