Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Ram Bus
Message
From
09/11/2006 16:39:33
 
 
To
09/11/2006 13:47:56
General information
Forum:
Windows
Category:
Hardware
Title:
Miscellaneous
Thread ID:
01168511
Message ID:
01168562
Views:
16
>Hello all,
>
>How could i find out a motherboard's ram memory bus speed capacity?? This information can be found usually on the motherboard's documentation, the thing is I don't have any of this documentations and i will buy some new DDRAM modules for several pc's. How could i find this info in Windows??? Some third party app? and if it could be possible to run an app through a network?? I know i can could find some of this info by going to each pc and entering BIOS. But i think it would be faster and more accurate to run a software to find out this if there is any.
>
>Thanks in advance,
>
>Jim.
procedure RamSpeed
*-- returns the speed of each of the ram chips
LOCAL lcResult
lcResult = []
IF VERSION(5)>600
	LOCAL loWMI, oItems, oItem
	loWMI = GETOBJECT("winmgmts:\\.\root\cimv2")
	oItems = loWMI.ExecQuery("select * from Win32_PhysicalMemory")

	FOR EACH oItem IN oItems
		lcResult = lcResult + TRANSFORM(oItem.Speed)+CHR(13)+CHR(10)
	ENDFOR
ENDIF
RETURN lcResult
endproc
Greg Reichert
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform