Windows

How to Change Workgroup on Windows 11

Richard
Written by
Richard
Feb 13, 2026 Updated Mar 31, 2026 2 min read
How to Change Workgroup on Windows 11

What is a Workgroup?

A workgroup is a simple way for computers on the same network to share files, printers, and other resources. Think of it as a group name that helps computers find each other. If your computers have the same workgroup name, they can see each other more easily on your network.

By default, Windows computers use the workgroup name WORKGROUP. But you can change it to something else if you want all your devices to be in the same group with a different name.

Why would you do this? If you want your Windows 11 computer to share files and printers easily with other devices on your network, you might need to change its workgroup. What happens when done? Your computer will be able to find and connect to other computers in the same workgroup more easily.

Learn more about turning file and printer sharing on or off in Windows 11.

How to Change Your Workgroup Using Windows Settings

  1. Open Settings. Click the Start menu and select Settings, or press Windows key + I on your keyboard.
  2. In Settings, click on System on the left side.
  3. Scroll down on the right and click About.
  4. Under About, click Advanced system settings. You might see a popup asking for permission. %%FLAG_ADMIN%%
System button in Windows Settings app

Windows 11 About pane tile

Windows 11 Advanced system settings

  1. In the System Properties window, click the Computer Name tab.
  2. Click the Change button.
System Properties Computer Name tab

  1. In the new window, choose Workgroup and enter the name you want for your workgroup.
  2. Click OK when done.
Computer Name and Domain Changes window

Important: Workgroup names cannot have spaces or special characters like these:

` ~ @ # $ % ^ & ( ) = + [ ] { } | ; : , ' " . < > / ?

  1. After clicking OK, restart your computer to apply the new workgroup name.
Workgroup name changed successfully

Change Workgroup Using Command Prompt

If you prefer using commands, here’s how to change your workgroup using Command Prompt:

  1. Open Command Prompt. To do this, type “cmd” in the Start menu, right-click Command Prompt, and select Run as administrator. %%FLAG_ADMIN%%
  2. Type the following command, replacing YourWorkgroupName with your desired workgroup name:
💻Code
wmic computersystem where name="%computername%" call joindomainorworkgroup name="YourWorkgroupName"

Example to switch to a workgroup named GEEKREWIND:

💻Code
wmic computersystem where name="%computername%" call joindomainorworkgroup name="GEEKREWIND"
  1. Restart your PC to finish the change.

Change Workgroup Using Windows PowerShell

You can also use Windows PowerShell to make this change:

  1. Open PowerShell as an administrator. %%FLAG_ADMIN%%
  2. Type the command below, replacing YourWorkgroupName with the name you want:
💻Code
Add-Computer -WorkGroupName "YourWorkgroupName"

Example to change to GEEKREWIND workgroup:

💻Code
Add-Computer -WorkGroupName "GEEKREWIND"
  1. Restart your computer to apply the change.

Summary

  • Changing your workgroup helps your Windows 11 PC share files and printers with other devices on your network.
  • You can do it easily through Settings, Command Prompt, or PowerShell.
  • Make sure your workgroup name has no spaces or special characters.
  • Don’t forget to restart your computer after changing the workgroup.

Now you know how to change your workgroup on Windows 11! This will make it easier to share things on your home or office network.

Was this guide helpful?

Tags: #Windows 11
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

2470 articles → Twitter

📚 Related Tutorials

How to Disable Command Prompt in Windows 11
Windows How to Disable Command Prompt in Windows 11
How to Share Files from Windows 11 to Android with Nearby Sharing
Windows How to Share Files from Windows 11 to Android with Nearby Sharing
How to Open Command Prompt at Boot in Windows 11
Windows How to Open Command Prompt at Boot in Windows 11
How to Share a Local Printer in Windows 11
Windows How to Share a Local Printer in Windows 11

Leave a Reply

Your email address will not be published. Required fields are marked *