Jump to content

SysInfoLog v2.11


ripdad
 Share

Recommended Posts

ahh ... you want to export to html.

It will need some more work ... but here's something to play with:

Local $sFile = FileOpenDialog('Select File', @ScriptDir, 'SysInfoLog File (*.log)|All Files (*.*)', 1)
If Not $sFile Then Exit

Local $aSIL = SysInfoLog_ReadToArray($sFile)
If @error Or Not IsArray($aSIL) Then Exit

SysInfoLog_HTML($aSIL, 'Common Startups')
Exit

Func SysInfoLog_HTML(ByRef $aSIL, $section)
    $idText = $section; GUICtrlRead(@GUI_CtrlId, 1)
    Local $aItems = SysInfoLog_ReadSection($aSIL, $idText)
    If @error Or Not IsArray($aItems) Then Return
    Local $fo = FileOpen(@ScriptDir & '\' & $idText & '.html', 2)
    If $fo = -1 Then Return
    Local $a, $s = '<html><table border="1"><tr><td width=400 bgcolor="#C0FFC0">' & $idText & '</td><td width=150>Company Name</td><td width=90>Version</td><td width=200>File Description</td><td width=90>Created</td></tr>' & @CRLF
    ;
    For $i = 1 To $aItems[0][0]
        If Not $aItems[$i][0] Then ExitLoop
        StringReplace($aItems[$i][0], '|', '')
        If @extended > 1 Then
            $a = StringSplit($aItems[$i][0], '|')
            $s &= '<tr><td width=400>' & $a[1] & '</td><td width=150>' & $a[2] & '</td><td width=90>' & $a[3] & '</td><td width=200>' & $a[4] & '</td><td width=90>' & $a[5] & '</td></tr>' & @CRLF
        Else
            $s &= '<tr><td width=400>' & $aItems[$i][0] & '</td><td width=150>.</td><td width=90>.</td><td width=200>.</td><td width=90>.</td></tr>' & @CRLF
        EndIf
    Next
    ;
    $s &= '</tr></table></html>'
    FileWrite($fo, $s)
    FileClose($fo)
    Sleep(250)
    ShellExecute(@ScriptDir & '\' & $idText & '.html')
EndFunc
;
Func SysInfoLog_ReadSection(ByRef $aSIL, $section)
    $section = '[' & $section & ']'
    Local $c = 0, $End = $aSIL[0][0] - 1
    Local $array[$aSIL[0][0] + 1][4]
    For $i = 1 To $aSIL[0][0]
        If $aSIL[$i][0] <> $section Then ContinueLoop
        $i += 1
        For $j = $i To $End
            If StringLeft($aSIL[$j][0], 1) = '[' Then ExitLoop 2
            $c += 1
            $array[$c][0] = $aSIL[$j][0]
            $array[$c][1] = $aSIL[$j][1]
            $array[$c][2] = $aSIL[$j][2]
            $array[$c][3] = $aSIL[$j][3]
        Next
        ExitLoop
    Next
    ReDim $array[$c + 1][4]
    $array[0][0] = $c
    Return SetError(0, 0, $array)
EndFunc
;
Func SysInfoLog_ReadToArray($LogFile)
    If Not FileExists($LogFile) Then Return SetError(-1, 0, 0)
    Local $fo = FileOpen($LogFile)
    If $fo = -1 Then Return SetError(-2, 0, 0)
    Local $s, $fr = StringStripCR(FileRead($fo))
    FileClose($fo)
    Local $a = StringSplit($fr, @LF)
    If $a[0] < 20 Then Return SetError(-3, 0, 0)
    Local $array[$a[0] + 1][4] = [[0, 'Type', 'Icon', 'Flag']]
    For $i = 1 To $a[0]
        $s = $a[$i]
        If StringInStr(StringRight($s, 4), '^', 0, 1, 1, 1) Then
            $array[$i][0] = StringLeft($s, StringInStr($s, '^', 0, -1) - 1)
            $array[$i][1] = StringLeft(StringRight($s, 3), 1)
            $array[$i][2] = StringLeft(StringRight($s, 2), 1)
            $array[$i][3] = StringRight($s, 1)
        Else
            $array[$i][0] = $s
        EndIf
    Next
    ReDim $array[$i + 1][4]
    $array[0][0] = $i
    Return SetError(0, 0, $array)
EndFunc

"The mediocre teacher tells. The Good teacher explains. The superior teacher demonstrates. The great teacher inspires." -William Arthur Ward

Link to comment
Share on other sites

  • Replies 101
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted Images

Now it works, I made before and UDF to the Array2D and it works fine.

Your function is very good. The layout is not adapted to all the sections but it's a very nice functions.

Thanks for your help.

Edited by ricky03
Link to comment
Share on other sites

ricky03 - you're welcome ... and since you got me working on the idea, export functions have been added. Thanks.

Updated first post to v1.21

"The mediocre teacher tells. The Good teacher explains. The superior teacher demonstrates. The great teacher inspires." -William Arthur Ward

Link to comment
Share on other sites

It works, brilliant. For the ListView you could have a look at _GUICtrlListView_EnableGroupView() to create collapsible headers. Just my 2cents. :mellow:

UDF List:

 
_AdapterConnections() • _AlwaysRun() • _AppMon() • _AppMonEx() • _ArrayFilter/_ArrayReduce • _BinaryBin() • _CheckMsgBox() • _CmdLineRaw() • _ContextMenu() • _ConvertLHWebColor()/_ConvertSHWebColor() • _DesktopDimensions() • _DisplayPassword() • _DotNet_Load()/_DotNet_Unload() • _Fibonacci() • _FileCompare() • _FileCompareContents() • _FileNameByHandle() • _FilePrefix/SRE() • _FindInFile() • _GetBackgroundColor()/_SetBackgroundColor() • _GetConrolID() • _GetCtrlClass() • _GetDirectoryFormat() • _GetDriveMediaType() • _GetFilename()/_GetFilenameExt() • _GetHardwareID() • _GetIP() • _GetIP_Country() • _GetOSLanguage() • _GetSavedSource() • _GetStringSize() • _GetSystemPaths() • _GetURLImage() • _GIFImage() • _GoogleWeather() • _GUICtrlCreateGroup() • _GUICtrlListBox_CreateArray() • _GUICtrlListView_CreateArray() • _GUICtrlListView_SaveCSV() • _GUICtrlListView_SaveHTML() • _GUICtrlListView_SaveTxt() • _GUICtrlListView_SaveXML() • _GUICtrlMenu_Recent() • _GUICtrlMenu_SetItemImage() • _GUICtrlTreeView_CreateArray() • _GUIDisable() • _GUIImageList_SetIconFromHandle() • _GUIRegisterMsg() • _GUISetIcon() • _Icon_Clear()/_Icon_Set() • _IdleTime() • _InetGet() • _InetGetGUI() • _InetGetProgress() • _IPDetails() • _IsFileOlder() • _IsGUID() • _IsHex() • _IsPalindrome() • _IsRegKey() • _IsStringRegExp() • _IsSystemDrive() • _IsUPX() • _IsValidType() • _IsWebColor() • _Language() • _Log() • _MicrosoftInternetConnectivity() • _MSDNDataType() • _PathFull/GetRelative/Split() • _PathSplitEx() • _PrintFromArray() • _ProgressSetMarquee() • _ReDim() • _RockPaperScissors()/_RockPaperScissorsLizardSpock() • _ScrollingCredits • _SelfDelete() • _SelfRename() • _SelfUpdate() • _SendTo() • _ShellAll() • _ShellFile() • _ShellFolder() • _SingletonHWID() • _SingletonPID() • _Startup() • _StringCompact() • _StringIsValid() • _StringRegExpMetaCharacters() • _StringReplaceWholeWord() • _StringStripChars() • _Temperature() • _TrialPeriod() • _UKToUSDate()/_USToUKDate() • _WinAPI_Create_CTL_CODE() • _WinAPI_CreateGUID() • _WMIDateStringToDate()/_DateToWMIDateString() • Au3 script parsing • AutoIt Search • AutoIt3 Portable • AutoIt3WrapperToPragma • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • DirToHTML5 • FileInstallr • FileReadLastChars() • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIEvents • GUIGetBkColor() • Int_Parse() & Int_TryParse() • IsISBN() • LockFile() • Mapping CtrlIDs • OOP in AutoIt • ParseHeadersToSciTE() • PasswordValid • PasteBin • Posts Per Day • PreExpand • Protect Globals • Queue() • Resource Update • ResourcesEx • SciTE Jump • Settings INI • SHELLHOOK • Shunting-Yard • Signature Creator • Stack() • Stopwatch() • StringAddLF()/StringStripLF() • StringEOLToCRLF() • VSCROLL • WM_COPYDATA • More Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

guinness,

I have looked into it, but got busy doing other things. I might take another look soon.

"The mediocre teacher tells. The Good teacher explains. The superior teacher demonstrates. The great teacher inspires." -William Arthur Ward

Link to comment
Share on other sites

  • 8 months later...

In my opinion, SMART and WMI have issues obtaining accurate information, since each manufacturer has their own set of codes they use. Even the ones they call "Core Values" have issues.

Another problem I ran into getting SMART information from WMI, is that it might pick up one drive and ignore another, if a PC has more than one.

And again, it might pick up two drives but they may have exactly the same data in it.

So, I don't put too much faith in WMI to return accurate information about SMART at this point. Too many anomalies.

There's a entry called "Status" on the System Information dialog/page of SysInfoLog. It uses a number of functions (presumably like "MSStorageDriver_FailurePredictStatus") to determine a drives condition.

System Information --> Disk Drives --> Status

Description from WMI:

The Status property is a string indicating the current status of the object. Various operational and non-operational statuses can be defined. Operational statuses are "OK", "Degraded" and "Pred Fail". "Pred Fail" indicates that an element may be functioning properly but predicting a failure in the near future. An example is a SMART-enabled hard drive. Non-operational statuses can also be specified. These are "Error", "Starting", "Stopping" and "Service". The latter, "Service", could apply during mirror-resilvering of a disk, reload of a user permissions list, or other administrative work. Not all such work is on-line, yet the managed element is neither "OK" nor in one of the other states.

Values:

OK, Error, Degraded, Unknown, Pred Fail, Starting, Stopping, Service, Stressed, NonRecover, No Contact, Lost Comm

This value is the one to watch for --> Pred Fail = Predicting Failure

-EDIT-

Oh well, so much for the above...

I just ran it on a known bad drive - and it says it's OK.

This worked (for me) on the bad drive for anyone needing it:

_MSStorageDriver_FailurePredictStatus()
Exit
;
Func _MSStorageDriver_FailurePredictStatus()
    Local $objWMI = ObjGet('Winmgmts:{ImpersonationLevel=Impersonate,AuthenticationLevel=PktPrivacy,(Debug)}!.rootWMI')
    If @error Or Not IsObj($objWMI) Then Return SetError(-1)
    Local $objClass = $objWMI.InstancesOf('MSStorageDriver_FailurePredictStatus')
    Local $str = ''
    ;
    If IsObj($objClass) Then
        For $objItem In $objClass
            $str &= $objItem.InstanceName & @CRLF
            $str &= 'Active: ' & $objItem.Active & @CRLF
            $str &= 'PredictFailure: ' & $objItem.PredictFailure & @CRLF
            $str &= 'Reason: ' & $objItem.Reason & @CRLF & @CRLF
        Next
    EndIf
    MsgBox(0,'MSStorageDriver_FailurePredictStatus', $str)
EndFunc
;
; Console Syntax:
; WMIC /NAMESPACE:rootwmi PATH MSStorageDriver_FailurePredictStatus
;
Edited by ripdad

"The mediocre teacher tells. The Good teacher explains. The superior teacher demonstrates. The great teacher inspires." -William Arthur Ward

Link to comment
Share on other sites

  • 3 weeks later...

Thanks a lot, you are the best...

Edit : if I insert this line :

#AutoIt3Wrapper_AU3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6

And if I press F5 I have 13 warning's because you declare in local and not in global. Why did you declare in local?

Edited by ricky03
Link to comment
Share on other sites

Use this instead: #AutoIt3Wrapper_AU3Check_Parameters=-d -w 1 -w 2 -w 3 -w- 4 -w 5 -w 6 -w 7 and read as to why ripdad used Local rather than the overused Global.

UDF List:

 
_AdapterConnections() • _AlwaysRun() • _AppMon() • _AppMonEx() • _ArrayFilter/_ArrayReduce • _BinaryBin() • _CheckMsgBox() • _CmdLineRaw() • _ContextMenu() • _ConvertLHWebColor()/_ConvertSHWebColor() • _DesktopDimensions() • _DisplayPassword() • _DotNet_Load()/_DotNet_Unload() • _Fibonacci() • _FileCompare() • _FileCompareContents() • _FileNameByHandle() • _FilePrefix/SRE() • _FindInFile() • _GetBackgroundColor()/_SetBackgroundColor() • _GetConrolID() • _GetCtrlClass() • _GetDirectoryFormat() • _GetDriveMediaType() • _GetFilename()/_GetFilenameExt() • _GetHardwareID() • _GetIP() • _GetIP_Country() • _GetOSLanguage() • _GetSavedSource() • _GetStringSize() • _GetSystemPaths() • _GetURLImage() • _GIFImage() • _GoogleWeather() • _GUICtrlCreateGroup() • _GUICtrlListBox_CreateArray() • _GUICtrlListView_CreateArray() • _GUICtrlListView_SaveCSV() • _GUICtrlListView_SaveHTML() • _GUICtrlListView_SaveTxt() • _GUICtrlListView_SaveXML() • _GUICtrlMenu_Recent() • _GUICtrlMenu_SetItemImage() • _GUICtrlTreeView_CreateArray() • _GUIDisable() • _GUIImageList_SetIconFromHandle() • _GUIRegisterMsg() • _GUISetIcon() • _Icon_Clear()/_Icon_Set() • _IdleTime() • _InetGet() • _InetGetGUI() • _InetGetProgress() • _IPDetails() • _IsFileOlder() • _IsGUID() • _IsHex() • _IsPalindrome() • _IsRegKey() • _IsStringRegExp() • _IsSystemDrive() • _IsUPX() • _IsValidType() • _IsWebColor() • _Language() • _Log() • _MicrosoftInternetConnectivity() • _MSDNDataType() • _PathFull/GetRelative/Split() • _PathSplitEx() • _PrintFromArray() • _ProgressSetMarquee() • _ReDim() • _RockPaperScissors()/_RockPaperScissorsLizardSpock() • _ScrollingCredits • _SelfDelete() • _SelfRename() • _SelfUpdate() • _SendTo() • _ShellAll() • _ShellFile() • _ShellFolder() • _SingletonHWID() • _SingletonPID() • _Startup() • _StringCompact() • _StringIsValid() • _StringRegExpMetaCharacters() • _StringReplaceWholeWord() • _StringStripChars() • _Temperature() • _TrialPeriod() • _UKToUSDate()/_USToUKDate() • _WinAPI_Create_CTL_CODE() • _WinAPI_CreateGUID() • _WMIDateStringToDate()/_DateToWMIDateString() • Au3 script parsing • AutoIt Search • AutoIt3 Portable • AutoIt3WrapperToPragma • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • DirToHTML5 • FileInstallr • FileReadLastChars() • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIEvents • GUIGetBkColor() • Int_Parse() & Int_TryParse() • IsISBN() • LockFile() • Mapping CtrlIDs • OOP in AutoIt • ParseHeadersToSciTE() • PasswordValid • PasteBin • Posts Per Day • PreExpand • Protect Globals • Queue() • Resource Update • ResourcesEx • SciTE Jump • Settings INI • SHELLHOOK • Shunting-Yard • Signature Creator • Stack() • Stopwatch() • StringAddLF()/StringStripLF() • StringEOLToCRLF() • VSCROLL • WM_COPYDATA • More Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

ricky03,

I don't use Global anymore, unless I just don't have a choice.

I made it as a stand-alone program, not a UDF. If you are trying to join the script with another one or do something other than what it was intended to do, then I suppose you would have problems. Otherwise, it should work as posted.

I don't use Scite and I rarely use AutoIt3Wrapper. And If I do use it, it's only to insert an icon with everything else turned off.

I use UltraEdit32 to write the code, Tidy to check for errors and Aut2exe.exe to compile with, and have been for years (old habits are hard to break).

The only UDF I use consistently is array.au3 -- other than that, I try to write my own functions. So I don't really need to strip unused functions since I normally use just one include.

So, you might have to adjust the script to fit your personal needs.

Did the suggestion that guinness said to use, fix your problem?

-"Thanks a lot, you are the best..."

You are certainly welcome - but I am far from the best - thanks anyways.

"The mediocre teacher tells. The Good teacher explains. The superior teacher demonstrates. The great teacher inspires." -William Arthur Ward

Link to comment
Share on other sites

I don't use Global anymore, unless I just don't have a choice.

Do you mean you don't use global variables unless you don't have a choice or do you mean you don't use the word Global?

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

I have question, with the version 2.00 for the QuickFix I have :

<--Win32_QuickFixEngineering

(1)|File 1

(2)|File 1

(3)|File 1

(4)|File 1

(5)|File 1

(6)|File 1

(7)|File 1

(8)|File 1

(9)|File 1

(10)|File 1

(11)|File 1

(12)|File 1

(13)|File 1

(14)|File 1

(15)|File 1

(16)|File 1

(17)|File 1

(18)|File 1

(19)|File 1

(20)|File 1

(21)|File 1

(22)|File 1

(23)|File 1

(24)|File 1

(25)|File 1

(26)|File 1

(27)|File 1

(28)|File 1

(29)|File 1

(30)|File 1

(31)|File 1

(32)|File 1

(33)|File 1

(34)|File 1

(35)|File 1

(36)|File 1

(37)|File 1

(38)|File 1

(39)|File 1

(40)|File 1

(41)|File 1

(42)|File 1

(43)|File 1

(44)|File 1

(45)|File 1

(46)|File 1

(47)|File 1

(48)|File 1

(49)|File 1

(50)|File 1

(51)|File 1

(52)|File 1

(53)|File 1

(54)|File 1

(55)|File 1

(56)|File 1

(57)|File 1

(58)|File 1

(59)|File 1

(60)|File 1

(61)|File 1

(62)|File 1

(63)|File 1

(64)|File 1

(65)|File 1

(66)|File 1

(67)|File 1

(68)|File 1

(69)|File 1

(70)|File 1

(71)|File 1

(72)|File 1

(73)|File 1

(74)|File 1

(75)|File 1

(76)|File 1

(77)|File 1

(78)|File 1

(79)|File 1

(80)|File 1

(81)|File 1

(82)|File 1

(83)|File 1

(84)|File 1

(85)|File 1

(86)|File 1

(87)|File 1

(88)|File 1

(89)|File 1

(90)|File 1

(91)|File 1

(92)|File 1

(93)|File 1

(94)|File 1

(95)|File 1

(96)|File 1

(97)|File 1

(98)|File 1

(99)|File 1

(100)|File 1

(101)|File 1

(102)|File 1

(103)|File 1

(104)|File 1

(105)|File 1

(106)|File 1

(107)|File 1

(108)|File 1

(109)|File 1

(110)|File 1

(111)|File 1

(112)|File 1

(113)|File 1

(114)|File 1

(115)|File 1

(116)|File 1

(117)|File 1

(118)|File 1

(119)|File 1

(120)|File 1

(121)|File 1

(122)|File 1

(123)|File 1

(124)|File 1

(125)|File 1

(126)|File 1

(127)|File 1

(128)|File 1

(129)|File 1

(130)|File 1

(131)|File 1

(132)|File 1

(133)|File 1

(134)|File 1

(135)|File 1

(136)|File 1

(137)|File 1

(138)|File 1

(139)|File 1

(140)|File 1

(141)|File 1

(142)|File 1

(143)|File 1

(144)|File 1

(145)|File 1

(146)|File 1

(147)|File 1

(148)|File 1

(149)|File 1

(150)|File 1

(151)|File 1

(152)|File 1

(153)|File 1

(154)|File 1

(155)|File 1

(156)|File 1

(157)|File 1

(158)|File 1

(159)|File 1

(160)|File 1

(161)|File 1

(162)|File 1

(163)|File 1

(164)|File 1

(165)|File 1

(166)|File 1

(167)|File 1

(168)|File 1

(169)|File 1

(170)|File 1

(171)|File 1

(172)|File 1

(173)|File 1

(174)|File 1

(175)|File 1

(176)|File 1

(177)|File 1

(178)|File 1

(179)|File 1

(180)|File 1

(181)|File 1

(182)|File 1

(183)|File 1

(184)|File 1

(185)|File 1

(186)|File 1

(187)|File 1

(188)|File 1

(189)|File 1

(190)|File 1

(191)|File 1

(192)|File 1

(193)|File 1

(194)|File 1

(195)|File 1

(196)|File 1

(197)|File 1

(198)|File 1

(199)|File 1

(200)|File 1

(201)|File 1

(202)|File 1

(203)|File 1

(204)|File 1

(205)|File 1

(206)|File 1

(207)|File 1

(208)|File 1

(209)|File 1

(210)|File 1

(211)|File 1

(212)|File 1

(213)|File 1

(214)|File 1

(215)|File 1

(216)|File 1

(217)|File 1

(218)|File 1

(219)|File 1

(220)|File 1

(221)|File 1

(222)|File 1

(223)|File 1

(224)|File 1

(225)|File 1

(226)|File 1

(227)|File 1

(228)|File 1

(229)|File 1

(230)|File 1

(231)|File 1

(232)|File 1

(233)|File 1

(234)|File 1

(235)|File 1

(236)|File 1

(237)|File 1

(238)|File 1

(239)|File 1

(240)|File 1

(241)|File 1

(242)|File 1

(243)|Q147222

(244)|M2656353

(245)|M2656370

(246)|M979906

(247)|S867460

(248)|KB968930

(249)|Q954430

(250)|Q973688

(251)|IDNMitigationAPIs

(252)|NLSDownlevelMapping

(253)|KB929399

(254)|KB2378111_WM9

(255)|KB952069_WM9

(256)|KB954155_WM9

(257)|KB968816_WM9

(258)|KB973540_WM9

(259)|KB975558_WM8

(260)|KB978695_WM9

(261)|KB979402_WM9

(262)|KB925398_WMP64

(263)|KB936782_WMP9

(264)|KB923689

(265)|KB941569

(266)|IE7-MUI

(267)|IE8-MUI

(268)|KB2183461-IE8

(269)|KB2360131-IE8

(270)|KB2362765-IE8

(271)|KB2416400-IE8

(272)|KB2447568-IE8

(273)|KB2482017-IE8

(274)|KB2497640-IE8

(275)|KB2510531-IE8

(276)|KB2530548-IE8

(277)|KB2544521-IE8

(278)|KB2559049-IE8

(279)|KB2586448-IE8

(280)|KB2598845-IE8

(281)|KB2618444-IE8

(282)|KB2632503-IE8

(283)|KB2647516-IE8

(284)|KB2675157-IE8

(285)|KB938127-IE7

(286)|KB942615-IE7

(287)|KB944533-IE7

(288)|KB958215-IE7

(289)|KB960714-IE7

(290)|KB963027-IE7

(291)|KB969897-IE8

(292)|KB971180-IE8

(293)|KB971961-IE8

(294)|KB972260-IE8

(295)|KB973874-IE8

(296)|KB975364-IE8

(297)|KB976325-IE8

(298)|KB976662-IE8

(299)|KB978207-IE8

(300)|KB978506-IE8

(301)|KB980182-IE8

(302)|KB980302-IE8

(303)|KB981332-IE8

(304)|KB982381-IE8

(305)|KB982664-IE8

(306)|KB2564958

(307)|KB971513

(308)|KB925877

(309)|KB926139-v2

(310)|KB926141

(311)|KB936929

(312)|KB2079403

(313)|KB2115168

(314)|KB2121546

(315)|KB2141007

(316)|KB2158563

(317)|KB2160329

(318)|KB2229593

(319)|KB2259922

(320)|KB2279986

(321)|KB2286198

(322)|KB2296011

(323)|KB2296199

(324)|KB2345886

(325)|KB2347290

(326)|KB2360937

(327)|KB2387149

(328)|KB2393802

(329)|KB2412687

(330)|KB2419632

(331)|KB2423089

(332)|KB2436673

(333)|KB2440591

(334)|KB2443105

(335)|KB2443685

(336)|KB2467659

(337)|KB2476490

(338)|KB2476687

(339)|KB2478960

(340)|KB2478971

(341)|KB2479628

(342)|KB2479943

(343)|KB2481109

(344)|KB2483185

(345)|KB2485376

(346)|KB2485663

(347)|KB2492386

(348)|KB2503658

(349)|KB2503665

(350)|KB2506212

(351)|KB2506223

(352)|KB2507618

(353)|KB2507938

(354)|KB2508272

(355)|KB2508429

(356)|KB2509553

(357)|KB2511455

(358)|KB2524375

(359)|KB2535512

(360)|KB2536276

(361)|KB2536276-v2

(362)|KB2541763

(363)|KB2544893

(364)|KB2544893-v2

(365)|KB2555917

(366)|KB2562937

(367)|KB2566454

(368)|KB2567053

(369)|KB2567680

(370)|KB2570222

(371)|KB2570791

(372)|KB2570947

(373)|KB2584146

(374)|KB2585542

(375)|KB2592799

(376)|KB2598479

(377)|KB2603381

(378)|KB2607712

(379)|KB2616676

(380)|KB2618451

(381)|KB2619339

(382)|KB2620712

(383)|KB2621440

(384)|KB2624667

(385)|KB2631813

(386)|KB2633171

(387)|KB2633952

(388)|KB2639417

(389)|KB2641653

(390)|KB2641690

(391)|KB2646524

(392)|KB2647518

(393)|KB2653956

(394)|KB2659262

(395)|KB2660465

(396)|KB2661637

(397)|KB2676562

(398)|KB2686509

(399)|KB2695962

(400)|KB923561

(401)|KB938464

(402)|KB938464-v2

(403)|KB946648

(404)|KB950762

(405)|KB950974

(406)|KB951066

(407)|KB951376-v2

(408)|KB951698

(409)|KB951748

(410)|KB951978

(411)|KB952004

(412)|KB952287

(413)|KB952954

(414)|KB954211

(415)|KB954459

(416)|KB954550-v5

(417)|KB954600

(418)|KB955069

(419)|KB955759

(420)|KB955839

(421)|KB956391

(422)|KB956572

(423)|KB956744

(424)|KB956802

(425)|KB956803

(426)|KB956841

(427)|KB956844

(428)|KB957097

(429)|KB958644

(430)|KB958687

(431)|KB958690

(432)|KB958869

(433)|KB959426

(434)|KB960225

(435)|KB960715

(436)|KB960803

(437)|KB960859

(438)|KB961118

(439)|KB961371-v2

(440)|KB961373

(441)|KB961501

(442)|KB961503

(443)|KB967715

(444)|KB968389

(445)|KB968537

(446)|KB969059

(447)|KB969898

(448)|KB969947

(449)|KB970238

(450)|KB970430

(451)|KB970653-v3

(452)|KB971029

(453)|KB971468

(454)|KB971486

(455)|KB971557

(456)|KB971633

(457)|KB971657

(458)|KB971737

(459)|KB972270

(460)|KB973346

(461)|KB973354

(462)|KB973507

(463)|KB973525

(464)|KB973687

(465)|KB973815

(466)|KB973869

(467)|KB973904

(468)|KB974112

(469)|KB974318

(470)|KB974392

(471)|KB974571

(472)|KB975025

(473)|KB975467

(474)|KB975560

(475)|KB975561

(476)|KB975562

(477)|KB975713

(478)|KB976002-v5

(479)|KB976098-v2

(480)|KB977165

(481)|KB977816

(482)|KB977914

(483)|KB978037

(484)|KB978251

(485)|KB978262

(486)|KB978338

(487)|KB978542

(488)|KB978601

(489)|KB978706

(490)|KB979306

(491)|KB979309

(492)|KB979482

(493)|KB979559

(494)|KB979683

(495)|KB979687

(496)|KB980195

(497)|KB980218

(498)|KB980232

(499)|KB980436

(500)|KB981322

(501)|KB981793

(502)|KB981852

(503)|KB981957

(504)|KB981997

(505)|KB982132

(506)|KB982214

(507)|KB982665

(508)|KB982802

(509)|XpsEPSC

And for with the version 1.23 I have :

<--Quick Fixes

(1) - Q147222

(2) - M2656353

(3) - M2656370

(4) - M979906

(5) - S867460

(6) - KB968930:|5/17/2012

(7) - Q954430

(8) - Q973688

(9) - IDNMitigationAPIs:|3/6/2008

(10) - NLSDownlevelMapping:|3/6/2008

(11) - KB929399

(12) - KB2378111_WM9

(13) - KB952069_WM9

(14) - KB954155_WM9

(15) - KB968816_WM9

(16) - KB973540_WM9

(17) - KB975558_WM8

(18) - KB978695_WM9

(19) - KB979402_WM9

(20) - KB925398_WMP64

(21) - KB936782_WMP9

(22) - KB923689

(23) - KB941569

(24) - IE7-MUI:|1/17/2009

(25) - IE8-MUI:|6/8/2009

(26) - KB2183461-IE8:|8/16/2010

(27) - KB2360131-IE8:|10/17/2010

(28) - KB2362765-IE8:|10/7/2010

(29) - KB2416400-IE8:|12/16/2010

(30) - KB2447568-IE8:|11/29/2010

(31) - KB2482017-IE8:|2/8/2011

(32) - KB2497640-IE8:|4/18/2011

(33) - KB2510531-IE8:|4/18/2011

(34) - KB2530548-IE8:|7/7/2011

(35) - KB2544521-IE8:|7/7/2011

(36) - KB2559049-IE8:|8/14/2011

(37) - KB2586448-IE8

(38) - KB2598845-IE8:|5/17/2012

(39) - KB2618444-IE8:|12/20/2011

(40) - KB2632503-IE8:|5/17/2012

(41) - KB2647516-IE8:|2/15/2012

(42) - KB2675157-IE8:|4/16/2012

(43) - KB938127-IE7:|3/6/2008

(44) - KB942615-IE7:|3/6/2008

(45) - KB944533-IE7:|3/6/2008

(46) - KB958215-IE7:|1/17/2009

(47) - KB960714-IE7:|1/17/2009

(48) - KB963027-IE7:|6/8/2009

(49) - KB969897-IE8:|6/11/2009

(50) - KB971180-IE8:|6/8/2009

(51) - KB971961-IE8:|9/15/2009

(52) - KB972260-IE8:|9/15/2009

(53) - KB973874-IE8:|9/18/2009

(54) - KB975364-IE8:|12/30/2009

(55) - KB976325-IE8:|12/30/2009

(56) - KB976662-IE8:|3/7/2010

(57) - KB978207-IE8:|2/16/2010

(58) - KB978506-IE8:|3/7/2010

(59) - KB980182-IE8:|4/9/2010

(60) - KB980302-IE8:|4/9/2010

(61) - KB981332-IE8:|4/15/2010

(62) - KB982381-IE8:|6/15/2010

(63) - KB982664-IE8:|8/26/2010

(64) - KB2564958

(65) - KB971513:|12/30/2009

(66) - KB925877:|3/7/2008

(67) - KB926139-v2

(68) - KB926141

(69) - KB936929:|6/8/2009

(70) - KB2079403:|8/16/2010

(71) - KB2115168:|8/16/2010

(72) - KB2121546:|9/15/2010

(73) - KB2141007:|9/15/2010

(74) - KB2158563:|10/7/2010

(75) - KB2160329:|8/16/2010

(76) - KB2229593:|7/16/2010

(77) - KB2259922:|9/15/2010

(78) - KB2279986:|10/17/2010

(79) - KB2286198:|8/16/2010

(80) - KB2296011:|10/17/2010

(81) - KB2296199:|12/16/2010

(82) - KB2345886:|10/17/2010

(83) - KB2347290:|9/15/2010

(84) - KB2360937:|10/17/2010

(85) - KB2387149:|10/17/2010

(86) - KB2393802:|2/8/2011

(87) - KB2412687:|4/18/2011

(88) - KB2419632:|1/12/2011

(89) - KB2423089:|12/16/2010

(90) - KB2436673:|12/16/2010

(91) - KB2440591:|12/16/2010

(92) - KB2443105:|12/16/2010

(93) - KB2443685:|12/16/2010

(94) - KB2467659:|12/16/2010

(95) - KB2476490:|7/7/2011

(96) - KB2476687:|2/8/2011

(97) - KB2478960:|2/8/2011

(98) - KB2478971:|2/8/2011

(99) - KB2479628:|2/8/2011

(100) - KB2479943:|3/14/2011

(101) - KB2481109:|3/14/2011

(102) - KB2483185:|2/8/2011

(103) - KB2485376:|2/8/2011

(104) - KB2485663:|4/18/2011

(105) - KB2492386:|5/17/2012

(106) - KB2503658:|4/18/2011

(107) - KB2503665:|7/7/2011

(108) - KB2506212:|4/18/2011

(109) - KB2506223:|4/18/2011

(110) - KB2507618:|4/18/2011

(111) - KB2507938:|7/25/2011

(112) - KB2508272:|4/18/2011

(113) - KB2508429:|4/18/2011

(114) - KB2509553:|4/18/2011

(115) - KB2511455:|4/18/2011

(116) - KB2524375:|3/30/2011

(117) - KB2535512:|7/7/2011

(118) - KB2536276:|7/7/2011

(119) - KB2536276-v2:|8/18/2011

(120) - KB2541763:|7/7/2011

(121) - KB2544893:|7/7/2011

(122) - KB2544893-v2:|11/9/2011

(123) - KB2555917:|7/25/2011

(124) - KB2562937:|8/14/2011

(125) - KB2566454:|8/14/2011

(126) - KB2567053:|10/24/2011

(127) - KB2567680:|8/18/2011

(128) - KB2570222:|8/18/2011

(129) - KB2570791:|8/25/2011

(130) - KB2570947:|9/14/2011

(131) - KB2584146:|1/13/2012

(132) - KB2585542:|1/24/2012

(133) - KB2592799:|10/24/2011

(134) - KB2598479:|1/13/2012

(135) - KB2603381:|1/13/2012

(136) - KB2607712:|9/9/2011

(137) - KB2616676:|9/14/2011

(138) - KB2618451:|12/16/2011

(139) - KB2619339:|12/16/2011

(140) - KB2620712:|12/16/2011

(141) - KB2621440:|3/13/2012

(142) - KB2624667:|12/20/2011

(143) - KB2631813:|1/13/2012

(144) - KB2633171:|12/16/2011

(145) - KB2633952:|12/16/2011

(146) - KB2639417:|12/20/2011

(147) - KB2641653:|3/13/2012

(148) - KB2641690:|11/15/2011

(149) - KB2646524:|1/13/2012

(150) - KB2647518:|3/13/2012

(151) - KB2653956:|4/16/2012

(152) - KB2659262:|5/17/2012

(153) - KB2660465:|2/15/2012

(154) - KB2661637:|2/15/2012

(155) - KB2676562:|5/17/2012

(156) - KB2686509:|5/17/2012

(157) - KB2695962:|5/17/2012

(158) - KB923561:|6/8/2009

(159) - KB938464:|6/8/2009

(160) - KB938464-v2:|6/9/2009

(161) - KB946648:|6/8/2009

(162) - KB950762:|6/8/2009

(163) - KB950974:|6/8/2009

(164) - KB951066:|6/8/2009

(165) - KB951376-v2:|6/8/2009

(166) - KB951698:|6/8/2009

(167) - KB951748:|6/8/2009

(168) - KB951978:|6/9/2009

(169) - KB952004:|6/8/2009

(170) - KB952287:|6/8/2009

(171) - KB952954:|6/8/2009

(172) - KB954211:|6/8/2009

(173) - KB954459:|6/9/2009

(174) - KB954550-v5:|6/9/2009

(175) - KB954600:|6/8/2009

(176) - KB955069:|6/8/2009

(177) - KB955759:|12/30/2009

(178) - KB955839:|1/17/2009

(179) - KB956391:|1/17/2009

(180) - KB956572:|6/8/2009

(181) - KB956744:|9/15/2009

(182) - KB956802:|6/8/2009

(183) - KB956803:|6/8/2009

(184) - KB956841:|6/8/2009

(185) - KB956844:|9/15/2009

(186) - KB957097:|6/8/2009

(187) - KB958644:|6/8/2009

(188) - KB958687:|6/8/2009

(189) - KB958690:|6/8/2009

(190) - KB958869:|12/30/2009

(191) - KB959426:|6/8/2009

(192) - KB960225:|6/8/2009

(193) - KB960715:|6/8/2009

(194) - KB960803:|6/8/2009

(195) - KB960859:|9/15/2009

(196) - KB961118:|6/9/2009

(197) - KB961371-v2:|9/15/2009

(198) - KB961373:|6/8/2009

(199) - KB961501:|6/12/2009

(200) - KB961503:|1/20/2010

(201) - KB967715:|6/8/2009

(202) - KB968389:|9/18/2009

(203) - KB968537:|6/12/2009

(204) - KB969059:|12/30/2009

(205) - KB969898:|6/11/2009

(206) - KB969947:|12/30/2009

(207) - KB970238:|6/12/2009

(208) - KB970430:|12/30/2009

(209) - KB970653-v3:|9/15/2009

(210) - KB971029:|2/23/2011

(211) - KB971468:|2/16/2010

(212) - KB971486:|12/30/2009

(213) - KB971557:|9/15/2009

(214) - KB971633:|9/15/2009

(215) - KB971657:|9/15/2009

(216) - KB971737:|12/30/2009

(217) - KB972270:|1/20/2010

(218) - KB973346:|9/15/2009

(219) - KB973354:|9/15/2009

(220) - KB973507:|9/15/2009

(221) - KB973525:|12/30/2009

(222) - KB973687:|12/30/2009

(223) - KB973815:|9/15/2009

(224) - KB973869:|9/15/2009

(225) - KB973904:|12/30/2009

(226) - KB974112:|12/30/2009

(227) - KB974318:|12/30/2009

(228) - KB974392:|12/30/2009

(229) - KB974571:|12/30/2009

(230) - KB975025:|12/30/2009

(231) - KB975467:|12/30/2009

(232) - KB975560:|2/16/2010

(233) - KB975561:|3/18/2010

(234) - KB975562:|6/15/2010

(235) - KB975713:|2/16/2010

(236) - KB976002-v5:|3/7/2010

(237) - KB976098-v2:|12/30/2009

(238) - KB977165:|2/16/2010

(239) - KB977816:|4/15/2010

(240) - KB977914:|2/16/2010

(241) - KB978037:|2/16/2010

(242) - KB978251:|2/16/2010

(243) - KB978262:|2/16/2010

(244) - KB978338:|4/15/2010

(245) - KB978542:|5/16/2010

(246) - KB978601:|4/14/2010

(247) - KB978706:|2/16/2010

(248) - KB979306:|3/7/2010

(249) - KB979309:|4/14/2010

(250) - KB979482:|6/15/2010

(251) - KB979559:|6/15/2010

(252) - KB979683:|4/15/2010

(253) - KB979687:|10/17/2010

(254) - KB980195:|6/15/2010

(255) - KB980218:|6/15/2010

(256) - KB980232:|4/15/2010

(257) - KB980436:|8/16/2010

(258) - KB981322:|9/15/2010

(259) - KB981793:|5/25/2010

(260) - KB981852:|8/16/2010

(261) - KB981957:|10/17/2010

(262) - KB981997:|8/16/2010

(263) - KB982132:|10/17/2010

(264) - KB982214:|8/16/2010

(265) - KB982665:|8/16/2010

(266) - KB982802:|9/15/2010

(267) - XpsEPSC

Why I have a diffence of 242 entries and no more install date? Of course, the 2 tests are made with the same computer.

Link to comment
Share on other sites

For comparison mine on win 7 64bit v2.0 of this script

<--Win32_QuickFixEngineering

(1)|KB917607

(2)|KB2425227

(3)|KB2446710

(4)|KB2475792

(5)|KB2479628

(6)|KB2479943

(7)|KB2482017

(8)|KB2484033

(9)|KB2485376

(10)|KB2488113

(11)|KB2491683

(12)|KB2492386

(13)|KB2497640

(14)|KB2503658

(15)|KB2503665

(16)|KB2505438

(17)|KB2506014

(18)|KB2506212

(19)|KB2506223

(20)|KB2506928

(21)|KB2507618

(22)|KB2508272

(23)|KB2508429

(24)|KB2509553

(25)|KB2510531

(26)|KB2511250

(27)|KB2511455

(28)|KB2515325

(29)|KB2518869

(30)|KB2522422

(31)|KB2524375

(32)|KB2529073

(33)|KB2532531

(34)|KB2533552

(35)|KB2534366

(36)|KB2536275

(37)|KB2536276

(38)|KB2539635

(39)|KB2541014

(40)|KB2544521

(41)|KB2544893

(42)|KB2545698

(43)|KB2547666

(44)|KB2552343

(45)|KB2556532

(46)|KB2560656

(47)|KB2563227

(48)|KB2564958

(49)|KB2567680

(50)|KB2570947

(51)|KB2572077

(52)|KB2579686

(53)|KB2584146

(54)|KB2585542

(55)|KB2588516

(56)|KB2598845

(57)|KB2603229

(58)|KB2607576

(59)|KB2618444

(60)|KB2618451

(61)|KB2619339

(62)|KB2620704

(63)|KB2620712

(64)|KB2631813

(65)|KB2632503

(66)|KB2633952

(67)|KB2639417

(68)|KB2641690

(69)|KB2644615

(70)|KB2656356

(71)|KB976902

(72)|KB982018

Edited by Chimaera
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...