Home >Common Problem >How to find available memory slots in Windows 11?
To check if your PC has available RAM slots on Windows 11:
Another built-in tool you can use to determine the number of available RAM slots is to use PowerShell. This is a good choice for users who prefer to use the command line.
You can also use the newer Windows Terminal for these commands. However, the old command prompt doesn't work here.
Find available memory slots via PowerShell:
Get-WmiObject -Class "Win32_PhysicalMemoryArray"
Get-WmiObject -Class "Win32_PhysicalMemory" | Format-Table BankLabel
We wouldn’t be remiss if we didn’t mention one of our favorite free third-party utilities to learn more about your PC. For more information, we would be remiss - Speccy. Once installed, it quickly scans your system and provides various hardware specs for you to digest.
This information includes the number of available memory slots.
To use Speccy to find the number of available memory slots on Windows 11:
The above is the detailed content of How to find available memory slots in Windows 11?. For more information, please follow other related articles on the PHP Chinese website!