How to Check If Your Windows PC Is Joined to a Domain

Isabella Shinn
Isabella Shinn

Updated:

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?

How to Check If Your Windows PC Is Joined to a Domain

There is no need to worry! This article will walk you through 4 methods to check domain membership status in Windows.

Using the System Properties GUI (Easy)

Step 1Press Win + R, type the following command, and press Enter.

sysdm.cpl

Run dialog box with sysdm.cpl typed in.

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

System Properties window with Computer Name tab selected and Click Change button

Step 3Look at the "Domain" section:

  • If it says something like Domain: corp.example.com, your PC is domain-joined.
  • If it says Workgroup: WORKGROUP, your PC is not domain-joined.

Computer Name/Domain Changes window showing

Using Command Prompt (systeminfo) (Quickest)

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.

Command Prompt output showing 'Domain: WORKGROUP'.

Using PowerShell (Pro)

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.

PowerShell output showing 'True' for PartOfDomain.

For more details you can also run this following command:

(Get-WmiObject Win32_ComputerSystem).Domain

Using Task Manager (User Tab)

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.

Task Manager with Users tab selected, showing username format.

Why Does It Matter?

Understanding whether your device is domain-joined is essential for:

  • IT troubleshooting;
  • Software deployment compatibility (e.g., backup solutions via Group Policy);
  • Access permissions in corporate environments;
  • Policy restrictions such as login limits, app control, or security baselines.

For example, many enterprise backup and recovery solutions require domain membership to enable centralized configuration, policy-based deployment, and user role isolation.

TL;DR

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