Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
On Error *
lcComputer = "."
loWMIService = GetObject("winmgmts:\\" + lcComputer + "\root\cimv2")
colItems = loWMIService.ExecQuery("Select * from Win32_PhysicalMemory",,48)
For Each loItem in colItems
?"Bank Label: " + loItem.BankLabel
?"Capacity: " + loItem.Capacity
?"Data Width: " + loItem.DataWidth
?"Description: " + loItem.Description
?"Device Locator: " + loItem.DeviceLocator
?"Form Factor: " + loItem.FormFactor
?"Hot Swappable: " + loItem.HotSwappable
?"Manufacturer: " + loItem.Manufacturer
?"Memory Type: " + loItem.MemoryType
?"Name: " + loItem.Name
?"Part Number: " + loItem.PartNumber
?"Position In Row: " + loItem.PositionInRow
?"Speed: " + loItem.Speed
?"Tag: " + loItem.Tag
?"Type Detail: " + loItem.TypeDetail
Next
DECLARE GlobalMemoryStatus IN win32API STRING @cMemBuffer
cMemBuffer=REPLICATE(CHR(0),32)
GlobalMemoryStatus(@cMemBuffer)