Easy Methods To Check PC Specs on Windows 10/11
This guide intends to teach you how to Display or Check PC Specs on Windows (PC Hardware Specifications). PC specs (Personal Computer specifications) are computer hardware specifications that are a technical description of the PC’s capabilities and PC Parts inside your PC. Understanding your PC Specs is crucial for various reasons, from ensuring software compatibility to upgrading your hardware effectively.
PC specs would include processor speed and number of Cores, CPU model and manufacturer, random access memory (RAM) capacity, and hard disk space. Now follow the guide steps below on the Orcacore website to Display Windows PC Specs.
To Show Windows PC Specs, you must log in to your Windows Client and follow the steps below. You can find your PC specs in different ways including:
1. Display PC Specs From Windows Settings
In this way, type settings in your search bar and click Settings App.

From Settings, click System.

On the left side, click About.

From there, you can review your PC Specs, such as device name, processor, etc.

2. Display PC Specs From System Information
You can also use system information to find your PC Specs. To do this, from your search bar search for the system information and open it.

On the left side, click System Summary and then review the information displayed on the right-hand side.

3. Check PC Specs with PowerShell or CMD
If you are comfortable with the command line interface, you can use PowerShell or CMD to find your PC Specs.
Open your PowerShell or CMD and run the command below:
systeminfo
PS C:Windowssystem32> systeminfo
Host Name: DESKTOP-U0MGLKM
OS Name: Microsoft Windows 10 Pro
OS Version: 10.0.19045 N/A Build 19045
OS Manufacturer: Microsoft Corporation
OS Configuration: Standalone Workstation
OS Build Type: Multiprocessor Free
...
You can scroll through the results to see more information about your operating system, processor, and available memory.
4. Check PC Specs with DxDiag Tool
DxDiag (DirectX diagnostics) is a Microsoft tool included with DirectX that allows you to view system information and DirectX information relating to your video card and sound card. This tool is helpful when needing to troubleshoot driver-related issues encountered by DirectX.
From your search bar, type DxDiag and click on it to open.

The DirectX window contains different tabs at the top that you can navigate for various audio and video information.

That’s it, you are done with Windows PC Specs.
Conclusion
At this point, you have learned to Check or Display PC Specs (PC Hardware Specifications) on Windows by using the Windows Settings, System Information, PowerShell or CMD, and DxDiag Tool. Knowing your PC Specs allows you to make informed decisions about software compatibility and hardware upgrades.
Hope you enjoy it. Also, you may like to read the following articles:
Completely Remove Python From Windows
Set up Apache Web Server on Windows 11
Various Methods To Check Hard Disk Speed in Windows
Disable Quick Access in Windows
Alternative Methods to Check PC Specs on Windows 10/11
While the methods described above are effective, there are other ways to uncover your PC Specs. Here are two alternative approaches:
1. Using the Windows Management Instrumentation Command-line (WMIC)
WMIC is a powerful command-line interface for accessing Windows Management Instrumentation (WMI). WMI provides a standardized way to access information about the system’s hardware and software components. It’s more focused and can return specific values directly.
Explanation:
WMIC allows you to query specific hardware information directly. For example, you can retrieve the processor name, memory capacity, or graphics card details with dedicated commands. This method is useful when you need specific information rather than a general overview.
Code Example (PowerShell):
To get the processor name:
Get-WmiObject win32_processor | Format-List Name
To get the total physical memory (RAM) in GB:
$ram = Get-WmiObject Win32_ComputerSystem | Select-Object TotalPhysicalMemory
$ramGB = [math]::Round($ram.TotalPhysicalMemory / 1GB, 2)
Write-Host "Total RAM: $ramGB GB"
To get the graphics card information:
Get-WmiObject Win32_VideoController | Format-List Name, AdapterRAM
These commands offer a more granular approach to retrieving PC Specs, allowing you to target specific hardware components.
2. Utilizing Third-Party System Information Tools
Numerous third-party tools are available that provide detailed system information in a user-friendly interface. These tools often offer more comprehensive information than the built-in Windows utilities and can include real-time monitoring features.
Explanation:
Tools like CPU-Z, Speccy, and HWMonitor provide a wealth of information about your hardware. They can display detailed specifications, temperature readings, and performance metrics. These tools are particularly useful for overclockers, gamers, and anyone who needs in-depth information about their system.
Example (Speccy):
Speccy, for example, provides a clean and organized interface, displaying details about the CPU, RAM, motherboard, graphics card, storage, and operating system. It also shows the temperature of various components, which can be helpful for troubleshooting performance issues.
Advantages of Third-Party Tools:
- Comprehensive Information: These tools often provide more detailed information than the built-in Windows utilities.
- User-Friendly Interface: They typically have a graphical interface that is easier to navigate than the command line.
- Real-Time Monitoring: Many of these tools offer real-time monitoring of hardware temperatures and performance metrics.
These third-party applications make the process of checking PC Specs much easier, providing a more comprehensive view of your system’s capabilities.
By utilizing WMIC commands or third-party system information tools, you can gain a deeper understanding of your PC Specs and troubleshoot potential hardware-related issues more effectively.