Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Vista Forums > Network & Sharing

Vista Tutorial - how to change the workgroup with a reg file?

Reply
 
Old 10-01-2008   #1 (permalink)
Newbie


Join Date: Oct 2008
Vista Ultimate 32bit.
 
 

how to change the workgroup with a reg file?

I don't want to restart my computer,so I want to change my workgroup by a reg file.In xp you can change it with this reg file,is this also work in vista?

Code:
 
@echo off
echo AppLife.Net
set /p name=your computername:
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 computername is changed
echo.
echo AppLife.Net
set /p work1=please input the workgroup name:
wmic computersystem where Name="%COMPUTERNAME%" call JoinDomainOrWorkgroup Name="%work1%"
echo work done
pause>nul
echo.

My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Can't Change Workgroup Name Vista networking & sharing
Re: Change Workgroup name Vista networking & sharing
Workgroup Name Change Tutorials
Can't change Workgroup name Vista networking & sharing
Where do I change the workgroup name? Vista networking & sharing


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46