How to Check Your PC's RAM: Total, Speed, and Type

Knowing what RAM your PC has — and how to find that information — is one of the most practical skills for any Windows or Mac user. Whether you're troubleshooting slowdowns, planning an upgrade, or just curious, checking your RAM takes less than two minutes once you know where to look.

What You're Actually Checking

When people ask how to check their PC RAM, they usually want to know one or more of these things:

  • Total installed RAM — how many gigabytes your system has
  • RAM speed — measured in MHz or MT/s (megatransfers per second)
  • RAM type — DDR4, DDR5, LPDDR5, etc.
  • Number of slots used — relevant if you're planning to add more
  • Dual-channel vs. single-channel configuration — affects memory bandwidth

Each of these lives in a slightly different place depending on your operating system and how deep you want to dig.

How to Check RAM on Windows

The Quick Method: Task Manager

For a fast read of your total RAM and current usage:

  1. Press Ctrl + Shift + Esc to open Task Manager
  2. Click the Performance tab
  3. Select Memory from the left panel

You'll see total installed RAM, how much is currently in use, your RAM's speed, form factor, and how many slots are in use. This is the fastest way to get a solid overview without installing anything.

System Settings

For just the total installed RAM:

  • Press Windows + ISystemAbout
  • Look for Installed RAM under Device specifications

This method gives you the total amount but nothing about speed or type.

Command Prompt or PowerShell 💻

For more detailed specs — including the exact memory type and part number — use the command line:

In Command Prompt (run as Administrator):

wmic memorychip get capacity, speed, memorytype, partnumber 

In PowerShell:

Get-WmiObject Win32_PhysicalMemory | Select-Object Capacity, Speed, MemoryType, PartNumber 

The MemoryType value returns a number code — for reference, 26 = DDR4, 34 = DDR5. These commands pull data directly from the hardware and are generally more accurate than third-party tools.

Third-Party Tools

Apps like CPU-Z (free) give you a clear breakdown of RAM type, speed, timings, and slot configuration in an easy-to-read interface. These are particularly useful when you need to match existing RAM for an upgrade and want to confirm exact specs.

How to Check RAM on macOS 🍎

Apple Menu Method

  1. Click the Apple logo in the top-left corner
  2. Select About This Mac
  3. Look for Memory in the overview

This shows total RAM and type (e.g., 16 GB LPDDR5).

System Information for Full Details

For slot-level detail:

  1. Go to About This MacMore Info (or System Report on older macOS versions)
  2. Navigate to Memory in the hardware section

You'll see each slot listed with its capacity, speed, and status.

Note for Apple Silicon Macs: RAM is unified memory integrated directly into the chip. You won't see separate "slots" because the architecture works differently — memory and CPU share the same die. You can still see total memory, but the upgrade path doesn't exist the same way it does on Intel Macs or Windows PCs.

Key Specs to Understand

SpecWhat It MeansWhy It Matters
CapacityTotal GB installedAffects multitasking headroom
Speed (MHz/MT/s)Data transfer rateHigher = faster data access
Type (DDR4/DDR5)Generation of RAMDetermines upgrade compatibility
Slots usedHow many physical sticks installedTells you if expansion is possible
Dual-channelTwo matched sticks working togetherIncreases memory bandwidth

Variables That Change What You're Looking At

The same PC can report RAM differently depending on several factors:

XMP/EXPO profiles: Many RAM kits are designed to run at speeds higher than the default JEDEC standard. If XMP (Intel) or EXPO (AMD) isn't enabled in BIOS, your RAM may be running at a lower speed than it's rated for. Task Manager and CPU-Z will show you the actual running speed, not the rated speed on the box.

Dual-channel vs. single-channel: If you have two 8 GB sticks installed in the correct slots, your system runs in dual-channel mode, which roughly doubles memory bandwidth compared to a single 16 GB stick. The number of slots used matters — not just the total capacity.

Form factor: Desktop PCs use DIMM sticks. Laptops use SO-DIMM. Some ultrabooks and all modern Apple Silicon machines use soldered RAM with no slots at all. This determines whether upgrading is even physically possible.

Reported vs. usable RAM: Windows sometimes shows a small difference between installed and usable RAM — often because a portion is reserved for integrated graphics or hardware. This is normal.

When the Numbers Don't Match What You Expected

If Task Manager shows your RAM running slower than rated, XMP/EXPO may be disabled in your BIOS. If Windows reports less RAM than installed, check whether the hardware reservation is unusually large, or whether a stick isn't seated properly. If CPU-Z shows only one channel populated when you have two sticks, they may be in the wrong slots — most motherboards require sticks in specific paired slots for dual-channel to activate.

The tools are straightforward. What varies is what you find — and what that means for how your particular system is configured and what, if anything, makes sense to change about it.