Jump to content

RAM Informationen


Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Recommended Posts

Hoi,

 

ich soll mal fix herausfinden was für ein speicher in einem Server drin ist, kann mich nur per Terminalsession auf den Server verbinden und kann auch keine Tools installieren, wo steht im System welche Taktfrequenz der speicher hat bzw. was für einer drin ist, oder halt generelle daten. Jetzt sagt nicht System - Eigenschaften, da seh ich ja wieviel aber mehr ned..... ;)

 

Gruß

totwart

Link to comment

Geht mit WMI, allerdings ist die Ebene nicht besonders tief und Aufschlussreich.

Hier was zum basteln.

On Error Resume Next
strComputer = ".\root\cimv2"
s = ""
Set objWMI = GetObject("winmgmts:\\" & strComputer)
sWmiq = "Select * from Win32_PhysicalMemory"
Set colItems = objWMI.ExecQuery(sWmiq,,48)
For Each objItem in colItems
s=s & "Bank: " & objItem.BankLabel & vbCrLf
s=s & "Capacity: " & objItem.Capacity/1048576 & " MB" & vbCrLf
s=s & "Data Width: " & objItem.DataWidth & vbCrLf
s=s & "Speed: " & objItem.Speed & " ns" & vbCrLf
tx = objItem.TypeDetail
If tx="16" Then tx="Static column"
If tx="32" Then tx="Pseudo static"
If tx="64" Then tx="RAMBUS"
If tx="128" Then tx="Synchronous"
If tx="512" Then tx="EDO"
If tx="1024" Then tx="Window DRAM"
If tx="2048" Then tx="Cache DRAM"
s=s & "Type: " & tx & vbCrLf & vbCrLf
Next
' MsgBox s
Wscript.Echo s

Link to comment
Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...