VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



WMI sample showing how to list memory configuration of a remote or local computer, like bank label,

by Bart Jonkman (20 Submissions)
Category: Miscellaneous
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Wed 19th February 2003
Date Added: Mon 8th February 2021
Rating: (1 Votes)

WMI sample showing how to list memory configuration of a remote or local computer, like bank label, description, installation date, model

Rate WMI sample showing how to list memory configuration of a remote or local computer, like bank label,



' This function lists memory configuration of a remote or local computer, 
' like bank label, description, installation date, model serial number, speed, etc.

' Goto http://www.activxperts.com/activmonitor and click on WMI Samples
' for more samples


Sub ListMemoryProperties( strComputer )
    Dim objWMIService, colItems

Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_PhysicalMemory",,48)
For Each objItem in colItems
    Wscript.Echo "BankLabel: " & objItem.BankLabel
    Wscript.Echo "Capacity: " & objItem.Capacity
    Wscript.Echo "Caption: " & objItem.Caption
    Wscript.Echo "CreationClassName: " & objItem.CreationClassName
    Wscript.Echo "DataWidth: " & objItem.DataWidth
    Wscript.Echo "Description: " & objItem.Description
    Wscript.Echo "DeviceLocator: " & objItem.DeviceLocator
    Wscript.Echo "FormFactor: " & objItem.FormFactor
    Wscript.Echo "HotSwappable: " & objItem.HotSwappable
    Wscript.Echo "InstallDate: " & objItem.InstallDate
    Wscript.Echo "InterleaveDataDepth: " & objItem.InterleaveDataDepth
    Wscript.Echo "InterleavePosition: " & objItem.InterleavePosition
    Wscript.Echo "Manufacturer: " & objItem.Manufacturer
    Wscript.Echo "MemoryType: " & objItem.MemoryType
    Wscript.Echo "Model: " & objItem.Model
    Wscript.Echo "Name: " & objItem.Name
    Wscript.Echo "OtherIdentifyingInfo: " & objItem.OtherIdentifyingInfo
    Wscript.Echo "PartNumber: " & objItem.PartNumber
    Wscript.Echo "PositionInRow: " & objItem.PositionInRow
    Wscript.Echo "PoweredOn: " & objItem.PoweredOn
    Wscript.Echo "Removable: " & objItem.Removable
    Wscript.Echo "Replaceable: " & objItem.Replaceable
    Wscript.Echo "SerialNumber: " & objItem.SerialNumber
    Wscript.Echo "SKU: " & objItem.SKU
    Wscript.Echo "Speed: " & objItem.Speed
    Wscript.Echo "Status: " & objItem.Status
    Wscript.Echo "Tag: " & objItem.Tag
    Wscript.Echo "TotalWidth: " & objItem.TotalWidth
    Wscript.Echo "TypeDetail: " & objItem.TypeDetail
    Wscript.Echo "Version: " & objItem.Version
Next

End Sub



' Main

Dim strComputer
Do
   strComputer = inputbox( "Please enter a computername or . for local computer", "Input" )
Loop until strComputer <> ""

ListMemoryProperties( strComputer )

WScript.Echo( vbCrlf & "For more samples, goto http://www.activxperts.com/activmonitor and click" )
WScript.Echo( "On WMI samples" )

Download this snippet    Add to My Saved Code

WMI sample showing how to list memory configuration of a remote or local computer, like bank label, Comments

No comments have been posted about WMI sample showing how to list memory configuration of a remote or local computer, like bank label,. Why not be the first to post a comment about WMI sample showing how to list memory configuration of a remote or local computer, like bank label,.

Post your comment

Subject:
Message:
0/1000 characters