
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2010 05:31 PM
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.
System
-Manufacturer
-Model
Processor
-Name
MemoryArray
-MaxCapacity (MB)
OS
-Caption
IP address
thank you.
Labels:
- Labels:
-
Archive
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2010 10:42 AM
thank you, that is what I need.


Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2010 06:38 PM
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'
