Windows 8.1 Hotfix Repository

Discussion in 'Windows 8' started by komm, Aug 31, 2013.

  1. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,381
    2,479
    120
    Interesting issue:

    1. I used clean IR5 image updated it to latest state (with hidden KB3197874, KB3197875, KB3205401).
    2. I made list (above) of KBs from previous updating and integrated them all (so I awaited on the final image WU will offer nothing (with hidden KB3197874, KB3197875, KB3205401))
    3. On final image with integrated list however WU offered KB3140219, which WU DIDN'T WANT at step 1! :/

    What does KB3140219?
    I wonder too, what is explanation of the issue... :))
     
  2. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,219
    84,895
    340
    Just install it :)
     
  3. Mr.X

    Mr.X MDL Guru

    Jul 14, 2013
    8,575
    15,646
    270
    #2663 Mr.X, Jan 10, 2017
    Last edited by a moderator: Apr 20, 2017
  4. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,219
    84,895
    340
  5. skorpion68

    skorpion68 MDL Novice

    Mar 21, 2015
    36
    76
    0
    Hello moderate,
    Thanks for the information on Windows RT 8.1, unfortunately update can not install windows8.1-kb3172614-arm_3d918d6c809bf6f57c8fcefa5db5c739e1754426.msu. Is there a prerequisite here? Could you possibly add a current download list to your update list in entry # 2656 for Windows RT 8.1?
     
  6. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,219
    84,895
    340
    Servicing stack update KB3173424
     
  7. skorpion68

    skorpion68 MDL Novice

    Mar 21, 2015
    36
    76
    0
    Hello abbodi1406, do you have a link for me?
     
  8. Mr.X

    Mr.X MDL Guru

    Jul 14, 2013
    8,575
    15,646
    270
    #2669 Mr.X, Jan 12, 2017
    Last edited by a moderator: Apr 20, 2017
  9. skorpion68

    skorpion68 MDL Novice

    Mar 21, 2015
    36
    76
    0
    Hello Mr.X,
    Thank you for the links, which are yes to be found publicly. I need the link for Windows RT 8.1 as written in post # 2666 already written.
     
  10. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,681
    18,589
    340
  11. the_soft45

    the_soft45 MDL Member

    Mar 28, 2016
    217
    133
    10
    Any chance for a script to install this on Windows 8.0, like the one you did with WMF 5.0? :biggrin:
     
  12. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,219
    84,895
    340
    #2675 abbodi1406, Jan 20, 2017
    Last edited by a moderator: Apr 20, 2017
    Win8-KB3191565-x64.cmd
    Code:
    @echo off
    rem script by: abbodi1406
    
    %windir%\system32\reg.exe query "HKU\S-1-5-19" 1>nul 2>nul || (
    set MESSAGE=ERROR: Run the script as administrator
    goto :END
    )
    for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
    if %winbuild% NEQ 9200 (
    set MESSAGE=ERROR: This package is for Windows 8
    goto :END
    )
    %windir%\system32\reg.exe query "HKLM\System\CurrentControlSet\Control\Session Manager\Environment" /v PROCESSOR_ARCHITECTURE | find /i "amd64" 1>nul || (
    set MESSAGE=ERROR: This package is for 64-bit systems ^(x64^)
    goto :END
    )
    if not exist "%~dp0W2K12-KB3191565-x64.msu" (
    set MESSAGE=ERROR: W2K12-KB3191565-x64.msu is not found besides the script
    goto :END
    )
    if not exist "%windir%\servicing\Packages\Microsoft-Windows-Foundation-Package*.mum" if not exist "%windir%\servicing\Packages\Microsoft-Windows-Client-Features-Package*.mum" (
    set MESSAGE=ERROR: Parent foundation package is not detected
    goto :END
    )
    if exist "%windir%\servicing\Packages\Microsoft-Windows-PowerShell-WTR-Package*6.2.9616.16384.mum" (
    set MESSAGE=ERROR: This package is already installed
    goto :END
    )
    set _mui=(ar-SA,bg-BG,cs-CZ,da-DK,de-DE,el-GR,en-US,es-ES,et-EE,fi-FI,fr-FR,he-IL,hr-HR,hu-HU,it-IT,ja-JP,ko-KR,lt-LT,lv-LV,nb-NO,nl-NL,pl-PL,pt-BR,pt-PT,ro-RO,ru-RU,sk-SK,sl-SI,sr-Latn-RS,sv-SE,th-TH,tr-TR,uk-UA,zh-CN,zh-HK,zh-TW)
    cd /d "%~dp0"
    echo.
    echo Exracting the package install files..
    if exist .\temp rd /s /q .\temp >nul
    mkdir .\temp
    expand.exe -f:*Windows*.cab W2K12-KB3191565-x64.msu .\ >nul
    expand.exe -f:* Windows8-RT-KB3191565-x64.cab .\temp >nul
    del /f /q Windows8-RT-KB3191565-x64.cab >nul
    echo.
    echo Installing main packages..
    FOR %%A IN (
    Microsoft-Windows-PowerShell-WTR-Package
    Microsoft-PowerShell-DSC-PullServer-Package
    WIN8IP-Win8-Microsoft-Windows-WMI-Package
    WIN8IP-Win8-Microsoft-Windows-WMI-onecoreadmin-Package
    Windows-Management-Protocols-Package-Win8
    Microsoft-Management-Odata-Package
    Microsoft-NetworkSwitch-Management-Package
    ) DO (
      %windir%\System32\Dism.exe /Online /NoRestart /Add-Package /PackagePath:temp\%%A~31bf3856ad364e35~amd64~~6.2.9616.16384.mum
    )
    if %errorlevel% neq 0 if %errorlevel% neq 3010 (
    set MESSAGE=ERROR: Installing main packages failed
    goto :END
    )
    echo.
    echo Installing language packages..
    for /d %%G in %_mui% do (
    if exist "%windir%\System32\%%G\wuaueng.dll.mui" (
      %windir%\System32\Dism.exe /Online /NoRestart /Add-Package /PackagePath:temp\Microsoft-Windows-PowerShell-WTR-Package~31bf3856ad364e35~amd64~%%G~6.2.9616.16384.mum
      %windir%\System32\Dism.exe /Online /NoRestart /Add-Package /PackagePath:temp\Microsoft-PowerShell-DSC-PullServer-Package~31bf3856ad364e35~amd64~%%G~6.2.9616.16384.mum
      %windir%\System32\Dism.exe /Online /NoRestart /Add-Package /PackagePath:temp\WIN8IP-Win8-Microsoft-Windows-WMI-Package~31bf3856ad364e35~amd64~%%G~6.2.9616.16384.mum
      %windir%\System32\Dism.exe /Online /NoRestart /Add-Package /PackagePath:temp\WIN8IP-Win8-Microsoft-Windows-WMI-onecoreadmin-Package~31bf3856ad364e35~amd64~%%G~6.2.9616.16384.mum
      %windir%\System32\Dism.exe /Online /NoRestart /Add-Package /PackagePath:temp\Windows-Management-Protocols-Package-Win8~31bf3856ad364e35~amd64~%%G~6.2.9616.16384.mum
      %windir%\System32\Dism.exe /Online /NoRestart /Add-Package /PackagePath:temp\Microsoft-Management-Odata-Package~31bf3856ad364e35~amd64~%%G~6.2.9616.16384.mum
      %windir%\System32\Dism.exe /Online /NoRestart /Add-Package /PackagePath:temp\Microsoft-NetworkSwitch-Management-Package~31bf3856ad364e35~amd64~%%G~6.2.9616.16384.mum
      )
    )
    if %errorlevel% neq 0 if %errorlevel% neq 3010 (
    set MESSAGE=ERROR: Installing language packages failed
    goto :END
    )
    if %errorlevel% equ 0 (
    set MESSAGE=Done
    )
    if %errorlevel% equ 3010 (
    set MESSAGE=Done. System restart is required to complete installation
    )
    echo.
    echo Removing temporary install files..
    %windir%\System32\Dism.exe /Online /NoRestart /Add-Package /PackagePath:temp\update.mum 1>nul 2>nul
    rd /s /q .\temp >nul
    
    :END
    echo.
    echo ============================================================
    echo %MESSAGE%.
    echo ============================================================
    echo.
    echo Press any Key to Exit.
    pause >nul
    exit
     
  13. adric

    adric MDL Expert

    Jul 30, 2009
    1,254
    1,327
    60
    #2677 adric, Jan 25, 2017
    Last edited: Jan 25, 2017
    I currently have W8.1 x64 installed without the Hyper-V feature enabled, but I am being offered KB3133690 and KB3135456
    for January. I was only expecting to see the IE flash and MRT update this time around. Can anyone explain this?
     
  14. adric

    adric MDL Expert

    Jul 30, 2009
    1,254
    1,327
    60
    windows 8.1 Pro 64-bit install.wim contains vmsntfy.dll in
    C:\WINDOWS\system32\DriverStore\FileReposity\wvms_pp.inf_amd64_c783d087b28a71d5
    and wvpci.sys in C:\WINDOWS\system32\Drivers

    The KBs I mentioned above contain these files, so I assume WU is correct in wanting to update these files even
    though they supposedly pertain to the Hyper-V feature which I have not enabled. Does that sound right?
     
  15. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,219
    84,895
    340
    KB3133690 > Microsoft-Hyper-V-Guest-Integration-Drivers-Package
    KB3135456 > Microsoft-Hyper-V-Server-Drivers-Package

    these are part of the edition package, not Hyper-V feature itself
    so, there are not affected by the feature status
     
  16. adric

    adric MDL Expert

    Jul 30, 2009
    1,254
    1,327
    60
    What do you mean by edition package, I have no idea what that refers to?