Jump to content

Pink_Freud

Members
  • Posts

    108
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by Pink_Freud

  1. Previously, If choose not to integrate KB3075851 & integrate instead WUA 7.6.7600.320 cabs WU will ask KB3075851 - "enhanced" & "improved" WUA which adds telemetry from superseded 2990214, 3050265 & 3065987 - If you hide 5851 WU asks for previous... 3056987, hide that, 3050265... etc. I uninstalled KB3075851 (which reset WU history) then before reboot add via DISM Old "New" Win Updt Agent 7.6.7600.320 from list, also direct links below: x86:http://ds.download.windowsupdate.com/v11/3/windowsupdate/selfupdate/WSUS3/x86/Win7SP1/WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~x86~~7.6.7600.320.cabhttp://ds.download.windowsupdate.com/v11/3/windowsupdate/selfupdate/WSUS3/x86/Win7SP1/WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~x86~~7.6.7600.320.cabhttp://ds.download.windowsupdate.com/v11/3/windowsupdate/selfupdate/WSUS3/x86/Win7SP1/WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~x86~~7.6.7600.320.cabx64:http://ds.download.windowsupdate.com/v11/3/windowsupdate/selfupdate/WSUS3/x64/Win7SP1/WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.320.cabhttp://ds.download.windowsupdate.com/v11/3/windowsupdate/selfupdate/WSUS3/x64/Win7SP1/WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.320.cabhttp://ds.download.windowsupdate.com/v11/3/windowsupdate/selfupdate/WSUS3/x64/Win7SP1/WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.320.cabAfter that hide in successive WU check above KB's. I will test fresh VM w/o KB3075851 & report. HTH & have a good weekend all.
  2. Out-of band emergency patch to fix a Zero-Day "being exploited in the wild" Out-of correctif d'urgence de la bande de fixer un Zero-Day "être exploités à l'état sauvage" https://threatpost.com/emergency-ie-patch-fixes-vulnerability-under-attack/114342 http://myonlinesecurity.co.uk/out-of-band-emergency-patch-for-all-versions-of-internet-explorer-on-windows-18-august-2015/ EDIT: No dl link in WU Catalog or MS Catalog direct link from WU log for IE11 x64 en-us: http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/08/ie11-windows6.1-kb3087985-x64_0ffadd3a42038e073083dac45ac1f37ee8e2355e.msu
  3. Tested in VM removed KB3065822, KB3074886 & KB3075516 WU does not ask... KB3058515 does not apply to my system.
  4. Same here, KB3078601 shows as installed but WU asks for install. :dizzy: Win 7 Pro x64 fresh VM.
  5. Hello all sorry for off topic, could someone w/ experience with Windows Script Host errors take a look at my topic here: http://www.wincert.net/forum/topic/13188-hidekbsvbs-windows-script-host-0x80240044-source-null/?p=116374 TIA Rgrds "Pink"
  6. Hello Wincert guru's help needed for an average user (me) with absolutely ZERO knowledge or experience w/scripting. I've used a "Hide KB's" .vbs in Windows 7 for years and upon attempting to employ the same in Windows 8.1 I get the following error shortly after launching: ---------------------------Windows Script Host---------------------------Script: C:\Users\XXXX\Desktop\HideKBs_Win_8-1.vbsLine: 72Char: 1Error: 0x80240044Code: 80240044Source: (null)---------------------------Contents of the VBS: ' Maxpsoft May 30, 2013, 9:34:15 PM' 06/18/2013 Add extra for Bing Desktop v1.3' 06/28/2013 Updated to continue searching as long as it is finding something otherwise Quit'' Original Mike.Moore Dec 17, 2012 on answers.microsoft but when ran it Hide everything so no good.' Link to script: http://www.msfn.org/board/topic/163162-hide-bing-desktop-and-other-windows-updates/' You may freely use this script as long as you copy it complete and it remains the same except for adjusting hideupdates.' If I need to change something then let me know so all may benefit.Dim WSHShell, StartTime, ElapsedTime, strUpdateName, strAllHiddenDim Checkagain 'Find more keep going otherwise QuitDim hideupdates(6) 'TO ADD 1 EDIT THE (#) AND ADD another hideupdates(#)hideupdates(0) = "KB2876229"hideupdates(1) = "KB2512827"hideupdates(2) = "KB2526954"hideupdates(3) = "KB2617986"hideupdates(4) = "KB2668562"hideupdates(5) = "KB2977218"hideupdates(6) = "KB3056819"Set WSHShell = CreateObject("WScript.Shell")StartTime = Timer 'Start the TimerSet updateSession = CreateObject("Microsoft.Update.Session")updateSession.ClientApplicationID = "MSDN Sample Script"Set updateSearcher = updateSession.CreateUpdateSearcher()Set searchResult = updateSearcher.Search("IsInstalled=0 and Type='Software' and IsHidden=0")Checkagain = "True"For K = 0 To 10 'Bing Desktop has 4, Silverlight has 5If Checkagain = "True" ThenCheckagain = "False"CheckUpdatesParseUpdatesEnd ifNextElapsedTime = Timer - StartTimestrTitle = "Windows Updates Hidden."strText = strAllHiddenstrText = strText & vbCrLf & ""strText = strText & vbCrLf & "Total Time " & ElapsedTimeintType = vbOkOnly'Silent just comment these 2 lines with a ' and it will run and quitSet objWshShell = WScript.CreateObject("WScript.Shell")intResult = objWshShell.Popup(strText, ,strTitle, intType)'Open Windows Update after remove the comment ''WshShell.Run "%windir%\system32\control.exe /name Microsoft.WindowsUpdate"Set objWshShell = nothingSet WSHShell = NothingWScript.QuitFunction ParseUpdates 'cycle through updatesFor I = 0 To searchResult.Updates.Count-1Set update = searchResult.Updates.Item(I)strUpdateName = update.Title'WScript.Echo I + 1 & "> " & update.TitleFor j = 0 To UBound(hideupdates)if instr(1, strUpdateName, hideupdates(j), vbTextCompare) = 0 thenElsestrAllHidden = strAllHidden _& vbcrlf & update.TitleUpdate.IsHidden = True'Checkagain = "True"end ifNextNextEnd FunctionFunction CheckUpdates 'check for new updates cause Bing Desktop has 3Set updateSession = CreateObject("Microsoft.Update.Session")updateSession.ClientApplicationID = "MSDN Sample Script"Set updateSearcher = updateSession.CreateUpdateSearcher()Set searchResult = _updateSearcher.Search("IsInstalled=0 and Type='Software' and IsHidden=0")End Function Any help/guidance would be greatly appreciated.
  7. Confirmed in VM & live 7 Pro x64, deepclean remove KB3077657: :type: 2015-07-20 15:55:11, Info CBS Adding: Package_for_KB3077657~31bf3856ad364e35~amd64~~6.1.1.02015-07-20 15:55:11, Info CBS DC: Package_for_KB3077657~31bf3856ad364e35~amd64~~6.1.1.0: unique components: 8 Size: 1.94 MB (2,043,065 bytes)2015-07-20 15:55:11, Info CBS Total size of superseded packages: 1.94 MB (2,043,065 bytes) :help:
  8. Same result here test in x64 Win 7 Pro VM, no request for KB3021952 Also uninstalled same on "live" system, WU not ask KB3021952
  9. According to aboddi1406 list @MDL KB3021952 (IE11 Updates) superseded/no longer needed: http://forums.mydigitallife.info/threads/19461-Windows-7-Hotfix-repository/page1001?p=1041567&viewfull=1#post1041567 He is usually right... will test in VM & report. Regards Pink
  10. Hello, KB3034344 already superseded & replaced in May patch tuesday updates by KB3045171 http://www.wincert.net/forum/topic/12103-8-juin-2015-update-list-gdr-pour-windows-7-sp1-x86x64-fr-en-de-es-it/page-29#entry115460 Regards Pink
  11. Hide KB's .vbs worked in setupcomplete, took 5 1/2 minutes though but did not hide 2 MSE's, Skype & all the Silverlights, it only hid the 21 "regular" KB's.
  12. ...I run it manually after install & first check for Windows Update, never tried it under WTK SFX... perhaps under setupcomplete.cmd?
  13. It means leave KB3022345 alive and hide KB3068708..... . ...or you can do what I've done: remove & hide both 3022345 & 3068708 (both causing sfc scannow recurring "unfixable" errors) and keep KB304599 & KB2882822 (IE prereq) The script works like a charm! Should be okay from reading the script's comment header: I've been using this script for more than a year now, it usually takes about 3 minutes to run & works every time; here's my latest: ' Maxpsoft May 30, 2013, 9:34:15 PM' 06/18/2013 Add extra for Bing Desktop v1.3' 06/28/2013 Updated to continue searching as long as it is finding something otherwise Quit'' Original Mike.Moore Dec 17, 2012 on answers.microsoft but when ran it Hide everything so no good.' Link to script: http://www.msfn.org/board/topic/163162-hide-bing-desktop-and-other-windows-updates/' You may freely use this script as long as you copy it complete and it remains the same except for adjusting hideupdates.' If I need to change something then let me know so all may benefit.Dim WSHShell, StartTime, ElapsedTime, strUpdateName, strAllHiddenDim Checkagain 'Find more keep going otherwise QuitDim hideupdates(24) 'TO ADD 1 EDIT THE (#) AND ADD another hideupdates(#)hideupdates(0) = "Silverlight"hideupdates(1) = "Microsoft Security Essentials"hideupdates(2) = "KB2506928"hideupdates(3) = "KB2545698"hideupdates(4) = "KB2660075"hideupdates(5) = "KB2761217"hideupdates(6) = "KB2773072"hideupdates(7) = "KB2843630"hideupdates(8) = "KB2846960"hideupdates(9) = "KB2876229"hideupdates(10) = "KB2891804"hideupdates(11) = "KB2893519"hideupdates(12) = "KB2952664"hideupdates(13) = "KB2977728"hideupdates(14) = "KB2990214"hideupdates(15) = "KB3006121"hideupdates(16) = "KB3006137"hideupdates(17) = "KB3006625"hideupdates(18) = "KB3013531"hideupdates(19) = "KB3020369"hideupdates(20) = "KB3021917"hideupdates(21) = "KB3035583"hideupdates(22) = "KB3045645"hideupdates(23) = "KB3048761"hideupdates(24) = "KB3050265"Set WSHShell = CreateObject("WScript.Shell")StartTime = Timer 'Start the TimerSet updateSession = CreateObject("Microsoft.Update.Session")updateSession.ClientApplicationID = "MSDN Sample Script"Set updateSearcher = updateSession.CreateUpdateSearcher()Set searchResult = updateSearcher.Search("IsInstalled=0 and Type='Software' and IsHidden=0")Checkagain = "True"For K = 0 To 10 'Bing Desktop has 4, Silverlight has 5
  14. I think it is an effect of removing KB3046049! I made a DeepClean on a real Hardware, where KB3046049 was installed: this KB has been uninstalled, but after tha WU asked for KB3021952 (only 5.2 MB). The same sh.t like after last patch-day! Regards, Thiersee Can't reproduce above (no KB3021952 in VIrtual Machine). Findings so far: KB3038314 replaces KB3032359 (MS Catalog, KB) KB3045999 replaces KB2872339, KB2922229, KB3046049 (MS Catalog) KB3046482 replaces KB2993958 (MS Catalog, KB) ??? replaces KB2993651 (no documentation, WUC reports as superseded)
  15. Update enables additional capabilities for Windows Update notifications in Windows 8.1 and Windows 7 SP1 :noexpression: :dizzy: Preparation for Win 10 RTM?????
  16. I've edited out my bonehead mistake (UAC causing re-asking problem) here and here My apologies to you & the thread participants. :dizzy:
  17. Well this is embarrassing. I really screwed the pooch with my UAC "fix"....(Self delete bad info) @Thiersee: Gotchya, Thanks a million!
  18. @Thiersee: Than you for your efforts, I appreciate it but I'm afraid you've lost me with talk of any KB's except 3021952, 3032359 & 3023607 :dizzy: those three are the only ones I had any issue(s) with. FWIW I'm testing x64 only w/ IE11 & prereq's, RDP, WU Client, Net 3.5.1 & updates thru DISM cmd script, March ULZ, & abboddi's Net 4.5 WA, mooms' Flash SFX thru Wintoolkit & setupcomplete for KB's 971033 & 2533552. ETA: I Hide these KB's on first MU checks: Update for Windows 7 for x64-based Systems KB2506928 Update for Windows 7 for x64-based Systems KB2545698 Update for Windows 7 for x64-based Systems KB2660075 Update for Windows 7 for x64-based Systems KB2719857 Update for Windows 7 for x64-based Systems KB2732059 Update for Windows 7 for x64-based Systems KB2761217 Update for Windows 7 for x64-based Systems KB2773072 Update for Windows 7 for x64-based Systems KB2799926 Update for Windows 7 for x64-based Systems KB2800095 Update for Windows 7 for x64-based Systems KB2843630 Update for Windows 7 for x64-based Systems KB2846960 Update for Windows 7 for x64-based Systems KB2853952 Update for Windows 7 for x64-based Systems KB2891804 Update for Windows 7 for x64-based Systems KB2893519 Update for Windows 7 for x64-based Systems KB2913152 Update for Windows 7 for x64-based Systems KB2918077 Update for Windows 7 for x64-based Systems KB2919469 Update for Windows 7 for x64-based Systems KB2928562 Update for Windows 7 for x64-based Systems KB2970228 Update for Windows 7 for x64-based Systems KB2977728 Update for Windows 7 for x64-based Systems KB2985461 Update for Windows 7 for x64-based Systems KB3006121 Update for Windows 7 for x64-based Systems KB3006137 Update for Windows 7 for x64-based Systems KB3006625 Update for Windows 7 for x64-based Systems KB3021917 Regards, Pink
×
×
  • Create New...