In enterprise environments, Windows computers are often joined to a domain, allowing centralized management via Active Directory. But how can you tell whether your PC is part of a domain or just a standalone workgroup machine?

There is no need to worry! This article will walk you through 4 methods to check domain membership status in Windows.
Step 1Press Win + R, type the following command, and press
Enter.
sysdm.cpl

Step 2In the System Properties window, go to the Computer Name tab and Click Change.

Step 3Look at the "Domain" section:
Domain: corp.example.com, your PC is domain-joined.Workgroup: WORKGROUP, your PC is not domain-joined.

Step 1Open Command Prompt.
Run this command:
systeminfo | findstr /C:"Domain"
Sample output:
Domain: WORKGROUP
If the domain is listed as WORKGROUP, your PC is not part of a domain. If it shows a
domain name like company.local, then it is domain-joined.

Step 1Open PowerShell.
Step 2Run the following command:
(Get-WmiObject Win32_ComputerSystem).PartOfDomain
Step 3This returns:
True → Your PC is joined to a domain.False → Your PC is not joined to a domain.
For more details you can also run this following command:
(Get-WmiObject Win32_ComputerSystem).Domain
Step 1Press Ctrl + Shift + Esc to open Task Manager.
Step 2Go to the Users tab.
Step 3Check the format of the logged-in username:
DOMAIN\username → Domain-joined.COMPUTERNAME\username → Local user account.
Understanding whether your device is domain-joined is essential for:
For example, many enterprise backup and recovery solutions require domain membership to enable centralized configuration, policy-based deployment, and user role isolation.
| Method | Domain-Joined Output | Not Domain-Joined Output |
|---|---|---|
| System Properties | Domain: corp.local
|
Workgroup: WORKGROUP
|
| Command Prompt | Domain: corp.local
|
Domain: WORKGROUP |
| PowerShell | True |
False |
| Task Manager | DOMAIN\username |
PCNAME\username |