> ## Documentation Index
> Fetch the complete documentation index at: https://docs.edisglobal.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Check CPU Cores on a Windows VPS

> Confirm Windows recognizes all CPU cores assigned to your VPS using Task Manager, msinfo32, and PowerShell. Verify core count and tune performance settings.

export const CtaButton = ({label, link, openInNewTab}) => <button className="custom-cta-button">
    <a href={link} target={openInNewTab ? "_blank" : "_self"}>
      {label}
    </a>
  </button>;

## How to check number of CPU cores available to Windows

If you installed Windows on your EDIS Global VPS, you can check the number of CPU cores available to your OS using various methods. Here are a few common ways to see how many CPU cores your system has.\
\
**Process to Check CPU Cores in Windows:**

<Steps>
  <Step title="Task Manager" iconType="regular" stepNumber={1} titleSize="h2">
    1. Right-click on the Taskbar and select "Task Manager".
    2. Click on the "Performance" tab.
    3. Select "CPU" from the left pane.
    4. Under the CPU graph, you will see information about your CPU. The number of cores and logical processors will be listed.
  </Step>
</Steps>

<Steps>
  <Step title="System Information" iconType="regular" stepNumber={2} titleSize="h2">
    1. Press `Windows + R` keys simultaneously to open the Run dialog box.
    2. Type `msinfo32` and press Enter. This will open the System Information window.
    3. Under "System Summary", you should see "Processor". It will show details about your CPU, including the number of cores.
  </Step>
</Steps>

<Steps>
  <Step title="Command Prompt" iconType="regular" stepNumber={3} titleSize="h2">
    1. Open Command Prompt (you can search for "cmd" in the Windows search bar and select the appropriate result).
    2. Type the following command and press Enter: `wmic cpu get NumberOfCores,NumberOfLogicalProcessors`
  </Step>
</Steps>

Any of these methods will provide you with information about the number of CPU cores in your system.

<CtaButton label="CPU Cores vs. CPU Sockets" link="./understanding-cpu-cores-vs-sockets-in-vps" />
