‎09-26-2012 04:35 PM
Solved! Go to Solution.
‎09-28-2012 12:41 PM
Select Top 1000000 Web40OSName.Compimage As icon, tblComputers.Computername, tblComputers.Computer, tblComputers.Domain, Web40OSName.OSname As OS, Case tblPROCESSOR.Architecture When 0 Then '32-bit' When 1 Then 'MIPS' When 2 Then 'Alpha' When 3 Then 'PowerPC' When 5 Then 'ARM' When 6 Then 'Itanium-based systems' When 9 Then '64-bit' Else 'unknown' End As [Processor Architecture], web40CorrectMemory.Memory, Cast(Cast(Cast(tblDiskdrives.Size As bigint) / 1024 / 1024 / 1024 As numeric) As varchar) As [C Disk Size in GB], Case When tblPROCESSOR.Architecture = 0 or web40CorrectMemory.Memory < 2048 Then 'cannot be upgraded' End As Status, tblComputers.Lastseen From tblComputers Left Join tblPROCESSOR On tblComputers.Computername = tblPROCESSOR.Computername Left Join Web40OSName On Web40OSName.Computername = tblComputers.Computername Left Join web40CorrectMemory On web40CorrectMemory.Computername = tblComputers.Computername Left Join tblDiskdrives On tblComputers.Computername = tblDiskdrives.Computername Where Web40OSName.OSname = 'win xp' And tblDiskdrives.Caption = 'c:' Order By tblComputers.ComputerUnique
‎09-28-2012 01:02 PM
‎09-28-2012 12:52 PM
‎09-28-2012 12:58 PM
ifm wrote:
It looks like the report show CPU architecture based on the OS currently installed.
‎09-28-2012 12:41 PM
Select Top 1000000 Web40OSName.Compimage As icon, tblComputers.Computername, tblComputers.Computer, tblComputers.Domain, Web40OSName.OSname As OS, Case tblPROCESSOR.Architecture When 0 Then '32-bit' When 1 Then 'MIPS' When 2 Then 'Alpha' When 3 Then 'PowerPC' When 5 Then 'ARM' When 6 Then 'Itanium-based systems' When 9 Then '64-bit' Else 'unknown' End As [Processor Architecture], web40CorrectMemory.Memory, Cast(Cast(Cast(tblDiskdrives.Size As bigint) / 1024 / 1024 / 1024 As numeric) As varchar) As [C Disk Size in GB], Case When tblPROCESSOR.Architecture = 0 or web40CorrectMemory.Memory < 2048 Then 'cannot be upgraded' End As Status, tblComputers.Lastseen From tblComputers Left Join tblPROCESSOR On tblComputers.Computername = tblPROCESSOR.Computername Left Join Web40OSName On Web40OSName.Computername = tblComputers.Computername Left Join web40CorrectMemory On web40CorrectMemory.Computername = tblComputers.Computername Left Join tblDiskdrives On tblComputers.Computername = tblDiskdrives.Computername Where Web40OSName.OSname = 'win xp' And tblDiskdrives.Caption = 'c:' Order By tblComputers.ComputerUnique
‎09-27-2012 08:06 PM
‎09-28-2012 11:44 AM
mdouglas wrote:
Also as a note, there is a 32-bit version of Windows 7 that only has a 1GB memory minimum requirement. We have quite a few machines running this with only 1GB memory and they seem to work great for non-CPU intensive day-to-day activities.
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now