tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 VB Script > Advanced > Get Physical Memory

Get Physical Memory 

The following example shows how to access system name and available physical memory by accessing WMI (Windows Management Instrumentation)

File Name  :  
source/VBS/advanced/physical_mem.vbs 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
01'local host
02strComputer = "."
03 
04'Get the info from WMI (Windows Management Instrumentation)
05Set objWMIService = GetObject("winmgmts:" _
06    & "{impersonationLevel=impersonate}!\\" _
07    & strComputer & "\root\cimv2")
08Set colSettings = objWMIService.ExecQuery _
09    ("Select * from Win32_ComputerSystem")
10 
11 
12For Each objComputer in colSettings
13    Wscript.Echo "System Name: " & objComputer.Name
14    Wscript.Echo "Total Physical Memory: " & _
15        (objComputer.TotalPhysicalMemory/(1024*1024)) & " MB"
16Next



 
  


  
bl  br