For an IT administrator, it’s important to quickly check if a Windows server or PC is domain-joined, as this directly impacts how the device is managed, secured, and integrated into the organization’s network infrastructure. Domain membership affects everything from policy enforcement and user access to remote administration and compliance, making it a key detail in everyday IT operations.
Below are all the ways you can check if a Windows server or PC is domain-joined.
Table of Contents
- System Properties (GUI Method)
- Settings App (Windows 10/11)
- Control Panel (Legacy Method)
- Command Prompt (Systeminfo & WMIC)
- PowerShell Command to Check Domain Status
System Properties (GUI Method)
To check if a Windows PC is domain-joined, press Win+R, type sysdm.cpl
, press Enter, and check the “Domain” field under the “Computer Name” tab. It will show either a domain name or say “WORKGROUP”.
Settings App (Windows 10/11)
The Settings app provides a quick GUI method to verify Windows domain membership. Go to Settings > System > About. Under the Device specifications, it will show either the domain name or WORKGROUP.

If you need to check domain status remotely or fix issues fast, tools like SetMe can make remote access seamless. SetMe provides the easiest way to connect to any Windows computer or server in just 3 steps and control the device with zero lag as if you were physically there.
See how it works
Control Panel (Legacy Method)
Open Control Panel > System and Security > System. Look under the “Computer name, domain, and workgroup settings” to see if the device is joined to a domain or part of a workgroup.
Command Prompt (Systeminfo & WMIC)
Option 1: systeminfo
command
Open Command Prompt and run:
systeminfo | findstr /B /C:"Domain"
The output will show either the device’s domain name or WORKGROUP.
Option 2: wmic
command
Open Command Prompt and run:
wmic computersystem get domain
This will return the domain name or workgroup of the device.
PowerShell Command to Check Domain Status
Open PowerShell and run the following command:
(Get-WmiObject Win32_ComputerSystem).PartOfDomain
The result will be True
(domain-joined) or False
(not domain-joined).
Summary
There are several ways to check if a Windows device is domain-joined, from System Properties to command line tools like PowerShell and WMIC. Whether you’re managing on-premise devices or troubleshooting remotely, quickly confirming domain status is key to efficient IT operations.