How to Find Your PC’s Maximum RAM Capacity
Quick answer: Open Task Manager (Ctrl + Shift + Esc) → Performance → Memory to see your currently installed RAM and slots used. To find the maximum your system supports, check your motherboard or laptop manufacturer’s official specifications page. That’s the most reliable source. If you can’t find it there, run
Get-CimInstance -ClassName Win32_PhysicalMemoryArray | Select-Object MaxCapacityin PowerShell, which reports your motherboard’s maximum supported capacity directly.
Before buying more RAM, you need three numbers: how much you currently have, how many slots you’re using, and the actual ceiling your hardware and Windows edition can support. Here’s how to find all three.
Step 1: Check Your Currently Installed RAM and Slots
- Search for Task Manager in the Windows search bar, or press Ctrl + Shift + Esc.
- Click the Performance tab, then select Memory in the left panel.
- Hover over “Slots used” on the right side to see how many of your motherboard’s total slots currently have RAM installed.
You can also check your installed RAM total under Settings > System > About (or press Windows key + Pause to jump there directly).

This screen also shows whether you’re running 32-bit or 64-bit Windows, which is worth confirming, since it directly affects your ceiling.
32-bit Windows can only use up to 4GB of RAM regardless of how much is physically installed, while 64-bit Windows supports vastly more, with the exact limit depending on your specific Windows edition (see the table below).
Related: How to Check If Your RAM Is DDR3, DDR4, or DDR5 in Windows?
Step 2: Find Your Motherboard or Laptop’s Maximum Supported RAM
Start with official documentation. Your motherboard or laptop’s specification sheet, either the printed manual or the manufacturer’s support page for your exact model, is the single most reliable source for maximum supported RAM.
Search your exact model number rather than a general product name, since RAM support can vary between revisions of the same model.
If documentation isn’t available, use PowerShell. This is the modern, supported way to query this directly from Windows. It replaces the older wmic command that many guides still reference but that Microsoft has been actively removing from Windows 11.
- Press Windows key + R, type
powershell, and press Enter (or search for PowerShell in the Start menu). - Run this command:
Get-CimInstance -ClassName Win32_PhysicalMemoryArray | Select-Object MaxCapacity, MemoryDevices
- The result shows your maximum RAM capacity in kilobytes and your total number of physical memory slots. Divide the KB figure by 1,048,576 to convert it to gigabytes. For example, a MaxCapacity of 33,554,432 KB works out to 32GB.
Related: How Many Bytes In A Gigabyte?
If you’re on an older system or PowerShell isn’t available for some reason, the legacy Command Prompt version is:
wmic memphysical get MaxCapacity, MemoryDevices

Be aware this may simply not work on current Windows 11 systems: Microsoft has disabled wmic by default since Windows 11 23H2/24H2 and is removing it entirely in more recent feature updates. If it doesn’t run, that’s expected; use the PowerShell command above instead.
Third-party tools work too. CPU-Z and Speccy can also show motherboard details, though for a hard maximum-capacity figure, PowerShell’s direct query or the manufacturer’s own spec sheet remain more authoritative than a general-purpose diagnostic tool.
Step 3: Understand What Actually Limits Your Maximum
Getting a single “maximum RAM” number is useful, but three separate factors combine to set your real ceiling, and any one of them can be the bottleneck:
1. Your motherboard’s chipset and DIMM slots. This is the number PowerShell’s MaxCapacity query reports. It is the hard ceiling your board’s design supports, based on its slot count and memory controller.
2. Your CPU’s supported memory limits. Even if your motherboard technically supports more, your processor has its own maximum memory specification (often listed on the manufacturer’s product page, e.g., Intel Ark or AMD’s spec pages). When the two disagree, the lower number governs.
3. Your Windows edition. Even with hardware that supports more, Windows itself enforces a ceiling by edition:
| Windows 11/10 Edition | Maximum RAM Supported |
|---|---|
| Home | 128 GB |
| Pro | 2 TB |
| Pro for Workstations | 6 TB |
| Education | 2 TB |
| Enterprise | 6 TB |
For the overwhelming majority of home and small-business users, this Windows-edition ceiling is far above what any consumer motherboard supports anyway. So it rarely ends up being the actual limiting factor. But it’s worth knowing about if you’re working with high-end workstation hardware.
How Much RAM Fits Per Slot?
Per-module capacity depends on your RAM generation, and it’s worth knowing the rough ranges since they’ve shifted meaningfully with each generation:
- DDR3 modules commonly top out around 8–16GB per stick on typical consumer motherboards.
- DDR4 modules commonly go up to 32GB per stick, with some higher-density 64GB modules available on boards specifically designed to support them.
- DDR5 has pushed further still. 48GB and 64GB consumer modules are increasingly common, and newer high-density 64GB DDR5 modules have started enabling total system capacities up to 256GB on standard four-slot desktop boards, a jump that would have been server-only territory just a couple of years ago.
To find your total maximum, multiply your per-slot maximum by your number of slots. But always confirm against your specific motherboard’s documentation, since not every board with four slots supports the same per-slot maximum as its higher-end siblings.
How to Calculate Per-Slot Capacity From Your Total
Once you know your system’s total maximum (from Step 2) and your number of slots (from Step 1), divide one by the other.
For example: a system reporting a 32GB maximum across 4 slots supports up to 8GB per slot, meaning four 8GB sticks, or two 16GB sticks paired with two empty slots, would both hit that ceiling in different configurations.
For best performance, install RAM in matched pairs (available on Amazon) to take advantage of dual-channel (or quad-channel, on supporting boards) memory access, which meaningfully outperforms running a single, unpaired module of the same total capacity.
Related: Can You Mix RAM Brands or Sizes on a PC or a Laptop?
Common Mistakes to Avoid
- Trusting a general product listing over your exact model’s documentation. RAM support can differ between revisions of the same laptop or motherboard model. Always check your specific model number.
- Assuming your motherboard’s maximum is your actual maximum. Your CPU and Windows edition both impose their own ceilings. Check all three, and go with whichever is lowest.
- Relying on
wmicwithout a fallback. It’s being phased out of Windows 11. Use the PowerShell command instead if it doesn’t return a result. - Buying mismatched RAM modules. Installing sticks of different speeds or capacities can work, but the system often runs everything at the slower module’s speed, and odd capacity combinations can disable dual-channel performance benefits entirely.
- Forgetting that laptop RAM is often soldered. Many modern thin-and-light laptops have memory built into the motherboard with no upgrade path at all. Confirm your exact model has user-accessible RAM slots before planning an upgrade.
Final Thoughts
Finding your PC’s maximum RAM capacity is one of the smartest things you can do before buying a memory upgrade. It only takes a few minutes, but it can save you from purchasing RAM that isn’t compatible with your system.
Start by checking your motherboard or laptop manufacturer’s specifications. If that information isn’t available, the PowerShell method in this guide is a reliable alternative.
Remember, your motherboard, processor, and Windows edition all play a role in determining how much RAM your system can actually use. Checking all three before you upgrade will help you make the right choice and avoid costly mistakes.
Related: Things to Upgrade on PC to Improve Its Performance: A PC Upgrade Advisor
Frequently Asked Questions
How do I find the maximum RAM my PC supports?
Check your motherboard or laptop manufacturer’s official specification page for your exact model, or run Get-CimInstance -ClassName Win32_PhysicalMemoryArray | Select-Object MaxCapacity in PowerShell to query it directly from Windows.
Why doesn’t the wmic command work anymore?
Microsoft has been phasing out the wmic command-line tool, disabling it by default starting with Windows 11 23H2/24H2 and removing it entirely in more recent feature updates. Use the PowerShell command Get-CimInstance -ClassName Win32_PhysicalMemoryArray instead, which retrieves the same information.
What’s the maximum RAM Windows 11 supports?
It depends on your edition: Windows 11 Home supports up to 128GB, Pro supports up to 2TB, and Pro for Workstations/Enterprise supports up to 6TB. For nearly all consumer hardware, your motherboard’s own limit will be reached long before Windows’ ceiling matters.
How much RAM can fit in one DIMM slot?
It depends on your RAM generation and specific motherboard: DDR3 typically tops out around 8–16GB per stick, DDR4 commonly reaches 32GB (with some boards supporting 64GB modules), and DDR5 has pushed to 48–64GB per stick on newer boards.
Does my CPU limit how much RAM I can install?
Yes. Your processor has its own maximum supported memory specification, separate from your motherboard’s. If your CPU’s limit is lower than your motherboard’s, the CPU’s number is your real ceiling.
Is it better to use two RAM sticks or four?
Using matched pairs (2 or 4 identical sticks) enables dual- or quad-channel memory access, which improves performance over an unpaired single stick of the same total capacity. Match capacity and speed across all installed modules for the most reliable result.
Can I mix different brands or sizes of RAM?
It often works, but the system may run all modules at the slower stick’s speed, and mismatched capacities can prevent dual-channel mode from working correctly. Matching modules is the safer choice when possible.
Does 32-bit Windows limit my maximum RAM?
Yes, significantly. 32-bit Windows can only use up to 4GB of RAM regardless of how much is physically installed. If you have more RAM than that installed and it’s not being used, switching to 64-bit Windows (a reinstall, not just a settings change) is required to access it.
How do I know if my laptop’s RAM is upgradeable at all?
Check your exact laptop model’s specifications from the manufacturer. Many current thin-and-light laptops use RAM soldered directly to the motherboard with no upgrade path, while others retain accessible SO-DIMM slots.
What happens if I install more RAM than my system’s actual maximum?
Typically, the system either won’t recognize the excess RAM (reporting only up to its supported maximum) or may fail to boot properly, depending on your specific motherboard’s behavior. Confirming your true maximum before buying avoids either scenario.
We hope this guide helped you find your PC’s maximum RAM capacity with confidence. If you found it useful, please share it with your friends and family.
Also, follow The Infobits on Facebook and X (formerly Twitter) for more PC upgrade guides, Windows tutorials, troubleshooting tips, honest product reviews, and practical buying advice.
We also ask that you bookmark this page for future reference, as we are constantly adding new information to our articles.
Sign up for our free newsletter as well to receive fresh information immediately in your inbox and keep technically up to date.
Disclosure: If you follow our links to a retailer’s website and make a purchase, we will get an affiliate commission on some, but not all, of the items or services we promote. This will cause no price change for you.







