千家信息网

windows修改计算机名和ip

发表于:2025-01-23 作者:千家信息网编辑
千家信息网最后更新 2025年01月23日,@echo offecho.echo.echo 自动修改计算机名和ipecho.set /p f=请输计算机的IP后缀(值小于255):set name= test%f%set net=本地连接 3s
千家信息网最后更新 2025年01月23日windows修改计算机名和ip
@echo offecho.echo.echo 自动修改计算机名和ipecho.set /p f=请输计算机的IP后缀(值小于255):set name= test%f%set net=本地连接 3set ip=192.168.10.set mask=255.255.255.0set gateway=192.168.10.1set dns1=114.114.114.114set dns2=8.8.8.8reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam" /v @ /t REG_SZ /d "%name%" /f >nul reg add "HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName" /v "ComputerName" /t REG_SZ /d "%name%" /f >nul reg add "HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ActiveComputerName" /v "ComputerName" /t REG_SZ /d "%name%" /f >nul reg add "HKLM\SYSTEM\CurrentControlSet\Services\Eventlog" /v "ComputerName" /t REG_SZ /d "%name%" /f >nul reg add "HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName" /v "ComputerName" /t REG_SZ /d "%name%" /f >nul reg add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters" /v "NV Hostname" /t REG_SZ /d "%name%" /f >nul reg add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters" /v "Hostname" /t REG_SZ /d "%name%" /f >nulnetsh interface ip set address "%net%" static %ip%%f% %mask% %gateway%netsh interface ip set dns "%net%" static %dns1% primarynetsh interface ip add dns "%net%"  %dns2%echo 已修改的配置信息如下:echo.echo 计算机名       %name%echo ip             %ip%%f%echo 掩码           %mask%echo 网关           %gateway%echo dns1           %dns1%echo dns2           %dns2%echo.echo "计算机名和ip修改成功"pause
0