|
Get Physical Memory
The following example shows how to access system name and available physical memory
by accessing WMI (Windows Management Instrumentation)
05 | Set objWMIService = GetObject( "winmgmts:" _ |
06 | & "{impersonationLevel=impersonate}!\\" _ |
07 | & strComputer & "\root\cimv2" ) |
08 | Set colSettings = objWMIService.ExecQuery _ |
09 | ( "Select * from Win32_ComputerSystem" ) |
12 | For Each objComputer in colSettings |
13 | Wscript.Echo "System Name: " & objComputer.Name |
14 | Wscript.Echo "Total Physical Memory: " & _ |
15 | (objComputer.TotalPhysicalMemory/(1024*1024)) & " MB" |
|
|
|