Windows 7 Hotfix repository

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

  1. komm

    komm MDL Addicted

    Jun 16, 2011
    894
    3,067
    30
  2. akf

    akf MDL Senior Member

    Aug 17, 2010
    345
    152
    10
    In my opinion, KB2558990 (Windows-Authentication-AuthUI, 6.1.7601.21759) is superseded by KB2725279-v2 (Windows-Authentication-AuthUI, 6.1.7601.22028).
     
  3. komm

    komm MDL Addicted

    Jun 16, 2011
    894
    3,067
    30
    You are totally right. My fault.
     
  4. steven4554

    steven4554 MDL Expert

    Jul 12, 2009
    1,556
    2,961
    60
  5. shon3i

    shon3i MDL Junior Member

    Jun 25, 2011
    65
    21
    0
    @McRip, what is preffered way to download office updates at once ? is there some tool to grab all links ?

    Thanks
     
  6. Stimpy88

    Stimpy88 MDL Senior Member

    Mar 24, 2011
    387
    215
    10
    I use PimpFish for IE, works like a charm for me.
     
  7. adric

    adric MDL Expert

    Jul 30, 2009
    1,427
    1,603
    60
    @McRip

    Do you allow FTP access to your Repo?
    I tried with hotfix2.cesidian.info, but that did not work. This would save me from having to download the .7z once a month.

    Al
     
  8. McRip

    McRip MDL Addicted

    Aug 15, 2011
    935
    3,418
    30
    I don't really know which kind of software to recommend for downloading all files at once because all the files are also on my hard disk. So I don't think about it or never thought about it.

    But Win7Toolkit does it for you.

    Due to security reasons there is no ftp access for this server. I upload the files by a different protocol.

    Sorry
     
  9. akf

    akf MDL Senior Member

    Aug 17, 2010
    345
    152
    10
    #5652 akf, Jul 2, 2012
    Last edited by a moderator: Apr 20, 2017
    No worries, komm. It is just a small slip-up. Both you and McRip have done an excellent job in maintaining your respective repositories. :worthy:

    Based on the great information provided by PointZero, I ran the following commands individually in Command Prompt, bearing in mind that I only installed Word, Excel and PowerPoint. The following superseded Office hotfixes were from April 2012.

    Code:
    msiexec /package {90140000-0011-0000-1000-0000000FF1CE} /uninstall "C:\Windows\Installer\2ba0b0.msp" /qb
    msiexec /package {90140000-0011-0000-1000-0000000FF1CE} /uninstall "C:\Windows\Installer\2ba1b8.msp" /qb
    msiexec /package {90140000-0011-0000-1000-0000000FF1CE} /uninstall "C:\Windows\Installer\2ba10b.msp" /qb
    msiexec /package {90140000-0011-0000-1000-0000000FF1CE} /uninstall "C:\Windows\Installer\2ba16f.msp" /qb
    msiexec /package {90140000-0011-0000-1000-0000000FF1CE} /uninstall "C:\Windows\Installer\2ba19f.msp" /qb
    msiexec /package {90140000-0011-0000-1000-0000000FF1CE} /uninstall "C:\Windows\Installer\2ba098.msp" /qb
    msiexec /package {90140000-0011-0000-1000-0000000FF1CE} /uninstall "C:\Windows\Installer\2ba122.msp" /qb
    msiexec /package {90140000-0011-0000-1000-0000000FF1CE} /uninstall "C:\Windows\Installer\2ba167.msp" /qb
    Are the name of the superseded msp files the same for everyone? If that is the case, how can I create a script that automatically runs the aforementioned commands? Thank you for the information. :)
     
  10. McRip

    McRip MDL Addicted

    Aug 15, 2011
    935
    3,418
    30
    Normally the old msp files will be automatically removed by the newer one when installing e.g. "*.msp /passive /norestart".

    That's why I don't understand why you remove the old one first? I never had such problems because the old files get removed automatically first.

    That's for office only.
     
  11. akf

    akf MDL Senior Member

    Aug 17, 2010
    345
    152
    10
    @McRip
    I use Burfadel's Installer For Microsoft Office Updates script to install the office hotfixes. Once they are installed, I proceed to uninstall the superseded office hotfixes using the commands I mentioned in my earlier post.

    Throughout my experience, the superseded msp files are still in C:\Windows\Installer, even after the newer msp files are installed. Perhaps, could you explain the way you install the office hotfixes in a bit more detail? Thanks. :)
     
  12. McRip

    McRip MDL Addicted

    Aug 15, 2011
    935
    3,418
    30
    #5655 McRip, Jul 2, 2012
    Last edited by a moderator: Apr 20, 2017
    OK, I never have taken a look at Burfs Installer, so I do not know which way this installer uses to install office updates.

    But there is nothing special about installing office msp files.
    That's what I use in a cmd file:
    Code:
    @echo off
    COLOR 1F
    
    for /F %%i in ('dir /b /o:n *.msi') do (
        echo Update: %%i
        %%i /passive /norestart
        )
    
    for /F %%i in ('dir /b /o:n *.msp') do (
        echo Update: %%i
        %%i /passive /norestart
        )
    
    EXIT
    
    Normally according to Microsoft (I have to look for the article), if you install an office msp file, e.g. access-x-none.msp, the older one which is installed will be uninstalled first. All this is working on my office installations and there are no older msp files on my computers... And I installed bunches of hotfixes and updates for office.
     
  13. PointZero

    PointZero MDL Member

    Oct 5, 2011
    1,415
    3,777
    60
    If you have a few free minutes, could you check something? Open C:\Windows\Installer folder, then sort the files by size with largest at the top. Check the file details property for several of the .msp files and I think you'll find you do have multiple versions of the older, previously installed updates that are still on your system.

    Here are a few of the larger .msp file sizes to check for:

    PowerPoint: ~96MB
    Word: ~68MB
    Excel: ~63MB
    Access: ~30MB
    Outlook: ~23MB

    ---------
    akf: I can't verify the names of those superseded .msp files you listed since I did a fresh reinstall of Office after last week's release. Maybe somebody else can check those file names on their systems though.
     
  14. McRip

    McRip MDL Addicted

    Aug 15, 2011
    935
    3,418
    30

    Gimme some time. I have to investigate some stuff regarding office 2010.

    And thanks for the hotfix.
     
  15. McRip

    McRip MDL Addicted

    Aug 15, 2011
    935
    3,418
    30
    repo updated.
     
  16. digital john

    digital john MDL Senior Member

    Mar 30, 2008
    265
    69
    10
    @t mcrip,
    is there an update for the runtimes soon?