SoFunction
Updated on 2025-04-03

Modify computer name Workgroup Computer description code

Copy the codeThe code is as follows:

@echo off
echo Junlong packaging computer name, computer description, work group modification batch program
Echo
pause
cls
:set/p id=Please enter the network segment number of this machine:
:set/p ip=Please enter the IP address of the machine:
:netsh interface ip set address name="local connection" source=static addr=192.168.%id%.%ip% mask=255.255.255.0
set /p name=Please enter the factory S/N number of your host:
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\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
SET work=Junlong
wmic computersystem where Name="%NAME%" call JoinDomainOrWorkgroup Name="%work%"
set /p describe=Please enter your computer description (the company must be the user's name):
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\lanmanserver\Parameters" /v srvcomment /t reg_sz /d %describe% /f

net config server /SRVCOMMENT:"%describe%"
pause

Use batch processing to modify the computer name and workgroup without restarting!

If you like a system that uses Ghost mirroring, the computer name after each reinstallation is a string of long random characters, which is very inconvenient and unsightly.
Generally speaking, when you modify the computer name or workgroup in the system properties, you always have to restart it, which is very troublesome. This is even true in the latest Vista operating system.
In fact, the computer name is saved in the registry. We can directly modify the registry to achieve the purpose of modification.

Copy the codeThe code is as follows:

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ActiveComputerName
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters

Workgroup modifications can be achieved through a wmic command.

wmic computersystem where Name="%COMPUTERNAME%" call JoinDomainOrWorkgroup Name="%WORKGROUP%"
Now we write it into a batch to implement modification of the computer name and workgroup without restarting:

Copy the codeThe code is as follows:

@echo off
echo
set /p name=Please enter your computer name:
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ActiveComputerName" /v ComputerName /t reg_sz /d %name% /f >nul 2>nul
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters" /v "NV Hostname" /t reg_sz /d %name% /f >nul 2>nul
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters" /v Hostname /t reg_sz /d %name% /f >nul 2>nul
echo.
echo The computer name has been modified
echo.
echo
set /p work1=Please enter your workgroup name:
wmic computersystem where Name="%COMPUTERNAME%" call JoinDomainOrWorkgroup Name="%work1%"
echo The modification work group is completed
pause>nul
echo.

Save the above code as a bat file and run it.