
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-29-2011 02:39 PM
Is there a way in Lansweeper 4.2 to create a report for specific KBs. If not is there a way to enable KB scanning on the local machine.
Thanks
Tim
Thanks
Tim
Labels:
- Labels:
-
Archive
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-29-2011 03:11 PM
Thank You X 10000000

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-29-2011 03:08 PM
Hotfix info can be found in tblQuickFixEngineering within the Lansweeper report builder. A basic report is shown below. Replace "YourKB" with the hotfix you're after.
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblQuickFixEngineering.Description,
tblQuickFixEngineering.HotFixID, tblQuickFixEngineering.InstalledBy,
tblQuickFixEngineering.InstalledOn, tblQuickFixEngineering.Lastchanged
From tblComputers Inner Join
tblQuickFixEngineering On tblComputers.Computername =
tblQuickFixEngineering.Computername
Where tblQuickFixEngineering.HotFixID = 'YourKB'
Order By tblComputers.ComputerUnique
