Greetings,
I'm pretty much a newb, so please be patient with me.
We are in the process of doing a refresh that the machines need to meet 4 criteria:
OS,HDD,RAM and MS Office
I have so far figured out most of the things I need in my report, except for the MS Office on what version.
Here is what I got so far:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssetCustom.Model,
tblAssets.OScode,
tblComputersystem.SystemType,
tblAssets.Memory,
tblAssets.Processor,
tblDiskdrives.Size,
tblDiskdrives.Caption,
tblFloppy.Model As Model1,
tblAssetCustom.PurchaseDate
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblDiskdrives On tblAssets.AssetID = tblDiskdrives.AssetID
Inner Join tblFloppy On tblAssets.AssetID = tblFloppy.AssetID
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID
Where tblAssetCustom.Model <> 'VMware Virtual Platform' And
tblAssetCustom.Model Not Like '%PowerEdge%' And tblDiskdrives.Caption = 'C:'
And tblAssetCustom.State = 1 And tblDiskdrives.DriveType = 3
Your guidance is greatly appreciated.
warmest regards,