In this tutorial, I’ll show you 3 simple ways to check RAM speed, type or frequency on Windows 10 / 11, without using any third-party software.
Check RAM Speed or Frequency Using Command Prompt execute the command below:
wmic MemoryChip get DeviceLocator, Manufacturer, Speed
Check RAM Speed or Frequency Using PowerShell execute the command below:
Get-CimInstance -ClassName Win32_PhysicalMemory | Format-Table Devicelocator, Manufacturer, Speed