
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-14-2007 07:41 PM
I just installed Lansweeper. After about 45min and a few permission issues, it's running fine and the web console is running fine.
The question I have is what would be the best way to view all the machines running a specific OS ?
Is this option available on the Web Console or do I have to query the SQL table (which table is it?).
Thanks for any support.
e.
The question I have is what would be the best way to view all the machines running a specific OS ?
Is this option available on the Web Console or do I have to query the SQL table (which table is it?).
Thanks for any support.
e.
Labels:
- Labels:
-
Archive
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-16-2007 07:35 PM
thanks,
You can help by promoting Runscanner, I need more testers and online analysis.
When it's done, I connect the search to the lansweeper interface.
Meanwhile I'm fixing some lansweeper memory leak issues with clients which have (wrong permissions in registry/wmi, ...)
And I'm creating some better error reporting.
You can help by promoting Runscanner, I need more testers and online analysis.
When it's done, I connect the search to the lansweeper interface.
Meanwhile I'm fixing some lansweeper memory leak issues with clients which have (wrong permissions in registry/wmi, ...)
And I'm creating some better error reporting.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-16-2007 07:21 PM
Thanks. I did figure it all out with Access/MSQuery. I'm going to incorporate this info into a VB Admin utility and our desktop remote control apps. Good job on the whole thing.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-15-2007 10:11 AM
easiest is to create a query:
SELECT dbo.tblComputers.Computername, dbo.tblOperatingsystem.Caption, dbo.tblOperatingsystem.CSDVersion, dbo.tblOperatingsystem.OSLanguage FROM dbo.tblComputers LEFT OUTER JOIN dbo.tblOperatingsystem ON dbo.tblComputers.Computername = dbo.tblOperatingsystem.Computername
