Windows 7 Hotfix repository

Discussion in 'Windows 7' started by SoLoR, May 22, 2010.

  1. hyunf

    hyunf MDL Novice

    Oct 19, 2009
    13
    0
    0
    x86 (hxxp://hotfixrepo.geeksmack.net/Windows.7/Hotfixes/x86-16.2.2011.7z)
    x64 (hxxp://hotfixrepo.geeksmack.net/Windows.7/Hotfixes/x64-16.2.2011.7z)
    not include some new hotfix:
    KB942914-v2
    KB2301288-v3
    KB2400157-v2
    KB2413670-v3
    KB2459492-v2
    KB2460922-v2
    KB2462137-v2
    KB2462585-v2
    KB2466373-v2
    KB2468316-v2
    KB2468498-v2
    KB2470949-v2
    KB2480118
    KB2481453-v2
    KB2491890

    hxxp://nnm-club.ru/forum/viewtopic.php?t=301927
    .torrent (PT) include some new hotfix (not list by SoLoR)
    KB2394849
    KB2439186
    KB2462137-v2
    KB2462182
    KB2465772
    KB2466373-v2
    KB2475792
    KB2480118
    KB2482017
    KB2485986
    KB2491890
    KB2498472
    KB2507840


    hxxp://thehotfixshare.net/board/index.php?autocom=downloads&showcat=136
    this page have many new hotfix (not list by SoLoR)
     
  2. SoLoR

    SoLoR MDL Expert

    Jul 30, 2008
    1,371
    1,256
    60
    eh... :S at least post NEW hotfixes not old superseeded ones... or hotfixes that didnt make in to package on _16th_ but they are in changelog :) im not saying i checked everything, but im quiet certain this is the case...
     
  3. burfadel

    burfadel MDL EXE>MSP/CAB

    Aug 19, 2009
    2,626
    3,856
    90
    All of the updates in the first list have been superseded. They may not be listed as 'removed' in SoLoR's information, because they were superseded when the updates were added, hence it was never added to be removed in the first place :)

    Not sure of some of the updates in the second list, some are superseded.

    Edit: Spent to long replying and SoLoR got in first :D
     
  4. SoLoR

    SoLoR MDL Expert

    Jul 30, 2008
    1,371
    1,256
    60
    I downloaded that nmt torrent just for fun... and duh suprise suprise everything installed or not applicible, only hotfix applicible from that nmt torrent is _PRE_ SP1 kernel update aka broken update.
     
  5. Reign_Of_Freedom

    Reign_Of_Freedom MDL Expert

    Aug 1, 2009
    1,246
    467
    60
    If i get time later tonight i'll bundle up the x64 and mirror it on my website. So if you guys wanna just download the whole thing you can w/o doing the one by one thingie.:D
     
  6. aznkid25

    aznkid25 MDL Member

    Aug 20, 2009
    199
    25
    10
    So now with SP1 installed, are there any updates to install from SoLoR's repository?
     
  7. gggggg

    gggggg MDL Novice

    Dec 1, 2007
    2
    0
    0
    hi Reign_of_Freedom,
    what is the link to your hotfix repository ? i'd like to download the complete pack without having to download each and every single hotfix from SoLoR's repo ...
     
  8. burfadel

    burfadel MDL EXE>MSP/CAB

    Aug 19, 2009
    2,626
    3,856
    90
    All of them :) The repository contains post SP1 updates.
     
  9. aznkid25

    aznkid25 MDL Member

    Aug 20, 2009
    199
    25
    10
    So none of those updates in the zip file are included in SP1? All updates are post SP1?
     
  10. SweetSmile

    SweetSmile MDL Novice

    Dec 19, 2009
    33
    63
    0
    All of them are older than in solor's list, or they are for Server 2008 R2 only.

    All of you, if you do not confirm hotfix's component version and applicable platform,
    DO NOT POST ANY INFORMATION WHICH YOU THINK THAT THE HOTFIX is #NEW#.

    BELIEVE SOLOR AND ZUKONA ONLY.
    DO NOT BELIEVE OTHER UPLOADER.
     
  11. Reign_Of_Freedom

    Reign_Of_Freedom MDL Expert

    Aug 1, 2009
    1,246
    467
    60
  12. Reign_Of_Freedom

    Reign_Of_Freedom MDL Expert

    Aug 1, 2009
    1,246
    467
    60
    Are you using Burf's v13 installer?
     
  13. Reign_Of_Freedom

    Reign_Of_Freedom MDL Expert

    Aug 1, 2009
    1,246
    467
    60
  14. SoLoR

    SoLoR MDL Expert

    Jul 30, 2008
    1,371
    1,256
    60
    hm... when did i remove /quiet /norestart from update cmd ? :< zeeh...
     
  15. gggggg

    gggggg MDL Novice

    Dec 1, 2007
    2
    0
    0
    #1175 gggggg, Mar 5, 2011
    Last edited by a moderator: Apr 20, 2017

    thank you!
     
  16. a_catalin

    a_catalin MDL Member

    Mar 4, 2011
    166
    66
    10
    #1176 a_catalin, Mar 6, 2011
    Last edited by a moderator: Apr 20, 2017
    Hi.
    I noticed that update cmd does not use return codes of wusa.exe and does not search in subfolders.
    So I tried to implement:

    Code:
    @echo off
    set found=false
    set installed=false
    set reboot=false
    set problem=false
    
    for /f "delims=!" %%A in ('dir /AD /b') do (
    if exist "%%A\*.msu" (
    set found=true
    for /f %%B in ('dir "%%A\*.msu" /b') do (
    echo Installing Update "%%A\%%B" ...
    start /wait wusa.exe "%%A\%%B" /quiet /norestart > nul
    if errorlevel 0 (
    if not errorlevel 1 (
    set installed=true
    ) else (
    if errorlevel 3010 (
    if not errorlevel 3011 (
    set installed=true
    set reboot=true
    ) else (
    if errorlevel 2359302 (
    if not errorlevel 2359303 (
    echo Already installed!
    ) else (
    echo Problem!
    set problem=true
    )
    ) else (
    echo Problem!
    set problem=true
    )
    )
    ) else (
    echo Problem!
    set problem=true
    )
    )
    ) else (
    echo Problem!
    set problem=true
    )
    
    )
    )
    )
    
    
    if exist *.msu (
    set found=true
    for /f %%A in ('dir /b *.msu') do (
    echo Installing Update "%%A" ...
    start /wait wusa.exe "%%A" /quiet /norestart >nul
    if errorlevel 0 (
    if not errorlevel 1 (
    set installed=true
    ) else (
    if errorlevel 3010 (
    if not errorlevel 3011 (
    set installed=true
    set reboot=true
    ) else (
    if errorlevel 2359302 (
    if not errorlevel 2359303 (
    echo Already installed!
    ) else (
    echo Problem!
    set problem=true
    )
    ) else (
    echo Problem!
    set problem=true
    )
    )
    ) else (
    echo Problem!
    set problem=true
    )
    )
    ) else (
    echo Problem!
    set problem=true
    )
    
    )
    )
    
    
    echo.
    echo ###########################################################
    echo.
    
    if %found%==true (
    if %installed%==true (
    echo Updates are installed
    if %problem%==true echo Problems were detected during installation
    if %reboot%==true (
    echo Press any key to reboot
    pause >NUL
    shutdown -r -t 0
    ) else (
    echo Press any key to close
    pause >NUL
    )
    ) else (
    echo No updates installed
    if %problem%==true echo Problems were detected during installation
    echo Press any key to close
    pause >NUL
    )
    ) else (
    echo No updates found
    echo Press any key to close
    pause >NUL
    )
    It shows message on each update if there was a problem, it notifies the user if updates were found and installed and it reboots OS only if necessary.
    I hope that helps :)

    Best regards, Catalin
     
  17. aznkid25

    aznkid25 MDL Member

    Aug 20, 2009
    199
    25
    10
    In the updates list that says what was added, for updates under "removed", does it mean that we should uninstall it from our computer?
     
  18. ricktendo64

    ricktendo64 MDL Expert

    Apr 20, 2008
    1,396
    2,025
    60
    You dont have to but yes, you can uninstall them they have been superseded
     
  19. akf

    akf MDL Senior Member

    Aug 17, 2010
    345
    152
    10
    gkexcel-x-none.msp
    gkpowerpoint-x-none.msp
    gkword-x-none.msp
    oscintl-en-us.msp

    For the aforementioned Office 2010 hotfixes, where can I obtain the information about what they update? I tried looking in Google and support.microsoft.com, but to no avail.
     
  20. burfadel

    burfadel MDL EXE>MSP/CAB

    Aug 19, 2009
    2,626
    3,856
    90
    oscintl-en-us.msp is the outlook social connector, you can tie in facebook, msn etc to outlook or something, I don't use it myself!

    the others update gkexcel.dll gkpowerpoint.dll and gkword.dll, I believe they may be web related as well...