To determine the number of memory slots with Windows, launch an elevated command prompt and enter the following commands:
wmic Memphysical get MaxCapacity, MemoryDevices
wmic MemoryChip get BankLabel, DeviceLocator, Capacity
To find similar information via PowerShell, use the following commands within an elevated session.
Get-WmiObject -Class "Win32_PhysicalMemoryArray"
Get-WmiObject -Class "Win32_PhysicalMemory" | Format-Table BankLabel
https://www.windowscentral.com/software-apps/windows-11/how-to-find-available-memory-slots-on-windows-11
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.