
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-14-2019 10:55 PM
I would like to edit the patch Tuesday report to include other KB articles. so for example the October 2019 report of server 2012 has the following:
When tsysOS.OSname = 'Win 8.1' Or
tsysOS.OSname = 'Win 2012 R2' Then 'KB4519990 or KB4520005'
I would like to add KB numbers and change "or" to "and"
When tsysOS.OSname = 'Win 8.1' Or
tsysOS.OSname = 'Win 2012 R2' Then 'KB4519990 and KB4520005 and KB4519974 and KB4521864 and KB4524135 '
Nothing seems to change the report output. I even put bobus numbers in and the report showed machines as being updated. Am I missing something
thanks
Mike
When tsysOS.OSname = 'Win 8.1' Or
tsysOS.OSname = 'Win 2012 R2' Then 'KB4519990 or KB4520005'
I would like to add KB numbers and change "or" to "and"
When tsysOS.OSname = 'Win 8.1' Or
tsysOS.OSname = 'Win 2012 R2' Then '
Nothing seems to change the report output. I even put bobus numbers in and the report showed machines as being updated. Am I missing something
thanks
Mike
Labels:
- Labels:
-
Report Center
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-15-2019 09:51 AM
The KB numbers in the report consist of 2 parts. Part 1 which is simply informational for the end-user, and part 2 which actually does the check if the KBs are installed.
The part that your editing is Part 1.
Further down the query you will see a list of KBs that are checked. You can add or change KBs to that as you like.
The part that your editing is Part 1.
Further down the query you will see a list of KBs that are checked. You can add or change KBs to that as you like.
Where tblQuickFixEngineeringUni.HotFixID In ('KB4520009', 'KB4520002',
'KB4520003', 'KB4519976', 'KB4519985', 'KB4520007', 'KB4519990',
'KB4520005', 'KB4520011', 'KB4093109', 'KB4519998', 'KB4520010',
'KB4520004', 'KB4520008', 'KB4519338', 'KB4517389')) As SubQuery1 On
tblAssets.AssetID = SubQuery1.AssetID
