
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-21-2013 04:38 PM
Greetings!
Trying to duplicate a report from our old inventory software, but I'm unable to determine the number of cores for a given system. Looking at tblProcessor shows both of those fields are NULL for the vast majority of assets (252 records in the table, only 4 records where those fields aren't null).
Trying to duplicate a report from our old inventory software, but I'm unable to determine the number of cores for a given system. Looking at tblProcessor shows both of those fields are NULL for the vast majority of assets (252 records in the table, only 4 records where those fields aren't null).
Labels:
- Labels:
-
Archive
5 REPLIES 5

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2013 05:41 PM
Please contact support@lansweeper.com regarding this issue.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2013 05:13 PM
Thanks - I get a few more hits that way, but still a lot of nulls. Even on systems that I know aren't virtual machines.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2013 02:12 AM
Assuming Version 5..
Please take a look at dbo.tblComputerSystem, as this records "NumberOf LogicalProcessors", "NumberofProcessors", & "SystemType"
USE LansweeperDB
Select dbo.tblAssets.AssetName
,dbo.tblComputerSystem.NumberOfLogicalProcessors
,dbo.tblComputerSystem.NumberofProcessors
,dbo.tblComputerSystem.SystemType
From dbo.tblComputerSystem
Inner Join dbo.tblAssets on dbo.tblComputerSystem.AssetID = dbo.tblAssets.AssetID
If you get nulls on Logical Proc's then it is likely to be a virtual machine.
Regards
Please take a look at dbo.tblComputerSystem, as this records "NumberOf LogicalProcessors", "NumberofProcessors", & "SystemType"
USE LansweeperDB
Select dbo.tblAssets.AssetName
,dbo.tblComputerSystem.NumberOfLogicalProcessors
,dbo.tblComputerSystem.NumberofProcessors
,dbo.tblComputerSystem.SystemType
From dbo.tblComputerSystem
Inner Join dbo.tblAssets on dbo.tblComputerSystem.AssetID = dbo.tblAssets.AssetID
If you get nulls on Logical Proc's then it is likely to be a virtual machine.
Regards

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-21-2013 05:07 PM
Please see this link: http://www.lansweeper.com/kb/8/incorrect-number-processors.html

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-21-2013 07:10 PM
Lansweeper wrote:
Please see this link: http://www.lansweeper.com/kb/8/incorrect-number-processors.html
Thanks, but it's not localized to Windows 2003 servers. I'm seeing this happen on pretty much every Windows system in the company.
With the exception of two Workstations running XP, Vista and Windows 7 are all coming up this way. All of our Windows servers, except for one 2008 R2 server, are coming up this way. It's not a show-stopper, by any means, but something's not working properly.
