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

批处理修改计算机IP、IPX、计算机名、盘符

来源于网络。
  1. @echo off
  2. color 1a
  3. set name=替换你的计算机名:
  4. reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ActiveComputerName" /v ComputerName /t reg_sz /d %name% /f
  5. reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters" /v "NV Hostname" /t reg_sz /d %name% /f
  6. reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters" /v Hostname /t reg_sz /d %name% /f
  7. set slection1=
  8. set slection1=替换你的IP地址:
  9. netsh interface ip set address name="本地连接" source=static addr=%slection1% mask=255.255.255.0
  10. set slection2=
  11. set slection2=替换你的网关地址:
  12. netsh interface ip set address name="本地连接" gateway=%slection2% gwmetric=0
  13. set slection3=
  14. set slection3=替换你的主dns地址
  15. netsh interface ip set dns name="本地连接" source=static addr=%slection3% register=PRIMARY
  16. set slection4=
  17. set slection4=替换你的备份dns地址
  18. netsh interface ip add dns name="本地连接" addr=%slection4%
  19. netsh interface ip set wins name="本地连接" source=static addr=none
  20. for /f "tokens=16 delims=." %%i in ('ipconfig ^| find /i "ip address"') do set netkey=%%i
  21. REG add "HKLM\SYSTEM\CurrentControlSet\Services\NwlnkIpx\Parameters" /v VirtualNetworkNumber /t REG_DWORD /d %netkey% /f
  22. set a=替换你需要修改的盘符(如果是f盘,请直接输入f,不能输入f:)
  23. set b=替换成你修改后的盘符(如果是g盘,请直接输入g,不能输入g:)
  24. set old=%a%:
  25. set new=%b%:
  26. for /f %%i in ('mountvol %old% /l') do set "vol=%%i"
  27. mountvol %old% /d
  28. mountvol %new% %vol%
  29. popd
  30. echo 工作已完成!!
  31. ping /n 3 127.1>nul
复制代码

改IP很好用啊
就能不用THINKPAD的ACCESS那个软件了

TOP

返回列表