Windows – Determine RAM clock timing in Windows 10

memorymemory-timingswindows 10wmic

How would I determine the RAM clock timing in Windows 10 using wmic memoryChip or related commands in command prompt or else a related, built-in tool.

I'm not that trusting of third-party software that taps into my system's hardware, so please don't suggest that as a solution.

Best Answer

This can be easily done within PowerShell using the following commands:

Get-WmiObject win32_physicalmemory | Format-Table Manufacturer,Configuredclockspeed,Devicelocator,Capacity,Serialnumber -autosize

This will give the following as output: enter image description here


You can also get this through Command line using the following command:

wmic memorychip get Capacity, MemoryType, Speed, DeviceLocator

..which would give the following output: enter image description here

Related Question