To verify the number of CPU cores in Windows 11, you can use any of the following methods:
🔹 Method 1: Task Manager
- Press
Ctrl + Shift + Esc
to open Task Manager. - Go to the Performance tab.
- Click on CPU on the left panel.
- Look in the bottom-right corner — you’ll see:
- Cores (physical cores)
- Logical processors (includes hyper-threading, if available)
🔹 Method 2: System Information
- Press
Windows + R
, typemsinfo32
, and press Enter. - In the System Summary:
- Look for
Processor
— it will mention the number of cores and logical processors (threads).
- Look for
🔹 Method 3: Command Prompt
- Open Command Prompt (
cmd.exe
). - Run:
wmic cpu get NumberOfCores,NumberOfLogicalProcessors
NumberOfCores
: physical cores per CPUNumberOfLogicalProcessors
: threads (logical cores)
🔹 Method 4: PowerShell
- Open PowerShell.
- Run:
Get-WmiObject -Class Win32_Processor | Select-Object Name, NumberOfCores, NumberOfLogicalProcessors
Related to
Comments
0 comments
Please sign in to leave a comment.