Windows 8 Updates Installer (x86 and x64)

Discussion in 'Windows 8' started by steven4554, Apr 12, 2012.

  1. steven4554

    steven4554 MDL Expert

    Jul 12, 2009
    1,430
    2,614
    60
    #1 steven4554, Apr 12, 2012
    Last edited: Jun 12, 2012
    I decided to make a updates installer for Windows 8 Release Preview and later. If you have any questions, i will try to answer them the best i can.

    The installer project has been cancelled, sorry!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. NICK@NUMBER11

    NICK@NUMBER11 MDL Expert

    Mar 23, 2010
    1,503
    718
    60
    hey great work here, how did you create the installer package, looking to do this for windows 7 also?
     
  3. steven4554

    steven4554 MDL Expert

    Jul 12, 2009
    1,430
    2,614
    60
    #3 steven4554, Apr 21, 2012
    Last edited: Apr 21, 2012
    (OP)
    I used Inno Setup which helps in wrapping up all the updates. The msu files are wrapped up in a winrar exe file as i couldn't get it to run right.

    I will be releasing a Windows 7 SP1 update installer soon with a seperate IE9 installer and other updates that need to be installed first before the main update installer.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. NICK@NUMBER11

    NICK@NUMBER11 MDL Expert

    Mar 23, 2010
    1,503
    718
    60
    #4 NICK@NUMBER11, Apr 22, 2012
    Last edited by a moderator: Apr 20, 2017
    This may help, this is what i use to install ....

    Code:
    @echo off
    CLS
    TITLE Admin Installation for Windows 7 - build 20.04.2012
    
    echo Getting Installation Files Ready...
    :Malicious software removal tool
    echo Installing Malicious Software Removal Tool...
    start /wait windows-kb890830-v4.7.exe /q
    echo Done!
    
    :Misc apps 
    echo Installing Silverlight... 
    start /wait Silverlight.exe /q
    echo Done!
    
    :Defender Definitions
    echo Installing Windows Defender Definition updates...
    start /wait mpas-fe.exe /Q
    echo Done!
    
    :NET Framework 4
    echo Installing .NET 4 Framework Client and Extended packages...
    start /wait dotNetFx40_Full_x86_x64_SlimSetup.exe /y
    echo Done!
    
    :Internet Explorer Teakes
    echo Applying Internet Explorer Registry Tweaks...
    start /w regedit /s IE_Tweaks.reg >nul
    echo Done!
    
    :Windows Update
    echo Installing Windows Updates...
    SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
    FOR /R "%~dp0" %%A IN (*.MSU) DO (
            ECHO= Installing %%~nA
            >NUL TIMEOUT /t 3
            WUSA "%%A" /quiet /norestart)
    echo Done!
    ECHO Press any key to restart
    >NUL PAUSE
    SHUTDOWN.EXE /s /t 5
    GOTO :EOF
     
  5. netant

    netant MDL Junior Member

    Feb 26, 2011
    64
    13
    0
    thanks :)
    seems like a hassle free solution for updates
     
  6. Nawzil

    Nawzil MDL Guru

    Jun 18, 2011
    2,206
    789
    90
    Can you please give me Direct download links to each available update?
     
  7. urie

    urie Moderator
    Staff Member

    May 21, 2007
    9,039
    3,388
    300
  8. maddog0266

    maddog0266 MDL Expert

    Apr 26, 2011
    1,247
    161
    60
    Cool...
    Thanks