Reference for Win32_LogicalMemoryConfiguration
|
|
Category (Kategorie): Memory
Description (Beschreibung): The Win32_LogicalMemoryConfiguration WMI class represents the layout and availability of memory on a Windows system. This class is no longer supported. Use the Win32_OperatingSystem class instead.
Availability (Verfügbarkeit):
Sample Code (Beispiel):
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_LogicalMemoryConfiguration")
For Each objItem in colItems
Wscript.Echo "Caption: " & objItem.Caption
Next
Links:
Link zur Original-Microsoft-Dokumentation
www.IT-Visions.de, (C) Dr. Holger Schwichtenberg
|