cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
dr_sah
Engaged Sweeper II
Hi, can somebody be so kind, and write me script with all this information included?

System
-Manufacturer
-Model
Processor
-Name
MemoryArray
-MaxCapacity (MB)
OS
-Caption
IP address

thank you.
2 REPLIES 2
dr_sah
Engaged Sweeper II
thank you, that is what I need.
taeratrin
Champion Sweeper
Try the following:

Select tblComputers.Computer, tblComputersystem.Manufacturer,
tblComputersystem.Model, tblPROCESSOR.Name As Processor,
tblComputers.LastknownIP, tblComputersystem.TotalPhysicalMemory,
tblOperatingsystem.Caption
From tblComputers Inner Join
tblComputersystem On tblComputers.Computername =
tblComputersystem.Computername Inner Join
tblPROCESSOR On tblComputers.Computername = tblPROCESSOR.Computername
Inner Join
tblOperatingsystem On tblComputers.Computername =
tblOperatingsystem.Computername
Where tblPROCESSOR.DeviceID = 'CPU0'