Windows 10 Hotfix Repository

Discussion in 'Windows 10' started by Tito, Oct 1, 2014.

  1. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,469
    2,485
    120
    Microsoft.NET.Native.Framework.1.0_1.0.22929.0 isn't in VS2015...
    I have just looked...
    ...abbodi has tracked it from W10updating, but unfortunatelly not arm the version
     
  2. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,469
    2,485
    120
  3. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,211
    90,794
    340
    #983 abbodi1406, Aug 22, 2015
    Last edited by a moderator: Apr 20, 2017
    No, PlayReady is deprecated, and Skybe is the only one needs WinJS

    Code:
    MinVersion="10.0.10049.0"
    It won't work for Windows 8.1
     
  4. Fennec

    Fennec MDL Junior Member

    Jun 11, 2015
    53
    6
    0
    I can not install the following updates:

    x64 (KB3081444) x64 (KB3081441) x64 (KB3074678) and x64 (KB3074686)
    I downloaded manually x64 (KB3081441), but I can not install it.

    I just did a "clean install" and Windows 10 is activated after an upgrade from W 8.1.

    Operating System: Windows 10 Professional 64-bit (10.0 Build 10240) (10240.th1.150709-1700)
    Processor: Intel (R) Core (TM) i3-3120M CPU @ 2.50GHz (4 CPUs), ~ 2.5GHz

    Thank you
     
  5. cengizhan

    cengizhan MDL Senior Member

    Jul 29, 2009
    478
    154
    10
    #985 cengizhan, Aug 22, 2015
    Last edited by a moderator: Apr 20, 2017
    There is still something wrong in somewhere. This sample command successfully updates the embedded app. But after installing widnows. app doesnt start. the button turns to gray.
    Code:
    
    set appx=Microsoft.WindowsStore_2015.812.14.0_neutral_~_8wekyb3d8bbwe.appxbundle
    set lc=microsoft.windowsstore_8wekyb3d8bbwe.xml
    
    set dep1_x86=dependency\x86\Microsoft.VCLibs.120.00_12.0.21005.1_x86__8wekyb3d8bbwe.appx
    set dep2_x86=dependency\x86\Microsoft.VCLibs.140.00_14.0.22929.0_x86__8wekyb3d8bbwe.appx
    set dep3_x86=dependency\x86\Microsoft.NET.Native.Runtime.1.0_1.0.22929.0_x86__8wekyb3d8bbwe.appx
    set dep4_x86=dependency\x86\Microsoft.NET.Native.Framework.1.0_1.0.22929.0_x86__8wekyb3d8bbwe.appx
    
    dism /Image:"%mountdir%" /Add-ProvisionedAppxPackage /PackagePath:"%appx%" /LicensePath:"%lc%"  /DependencyPackagePath:"%dep1_x86%" /DependencyPackagePath:"%dep2_x86%" /DependencyPackagePath:"%dep3_x86%" /DependencyPackagePath:"%dep4_x86%" 
    
    
    This is my third try.
     
  6. cengizhan

    cengizhan MDL Senior Member

    Jul 29, 2009
    478
    154
    10
    This is the error code in event viewer : 80073CF3 which google says that a dependency package is missing.
     
  7. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,211
    90,794
    340
    #987 abbodi1406, Aug 22, 2015
    Last edited by a moderator: Apr 20, 2017
    WindowsStore require NET.Native.Runtime and VCLibs.140.00
    for x64 it needs both x86 & x64

    Code:
    Dism /Image:"%mountdir%" /Add-ProvisionedAppxPackage /PackagePath:Microsoft.WindowsStore_2015.812.14.0_neutral_~_8wekyb3d8bbwe.appxbundle /DependencyPackagePath:Microsoft.NET.Native.Runtime.1.0_1.0.22929.0_x86__8wekyb3d8bbwe.appx /DependencyPackagePath:Microsoft.VCLibs.140.00_14.0.22929.0_x86__8wekyb3d8bbwe.appx /LicensePath:microsoft.windowsstore_8wekyb3d8bbwe.xml
    
     
  8. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,469
    2,485
    120
    #988 moderate, Aug 22, 2015
    Last edited by a moderator: Apr 20, 2017
    But it will work in Windows 10 Mobile Arm :))
     
  9. cengizhan

    cengizhan MDL Senior Member

    Jul 29, 2009
    478
    154
    10
    #989 cengizhan, Aug 22, 2015
    Last edited by a moderator: Apr 20, 2017
    i already tried yours. i have looked all the dependencies of all apps.

    not only store. phone, weather, bing apps, photo apps also doesnt work. same situation if i skip updating store.
     
  10. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,469
    2,485
    120
    Abbodi, what action brought you to retrieving Microsoft.NET.Native.Framework packages?
    What update or component you performed for these?

    Microsoft.NET.Native.Framework.1.0_1.0.22929.0_x64__8wekyb3d8bbwe.appx
    Microsoft.NET.Native.Framework.1.0_1.0.22929.0_x86__8wekyb3d8bbwe.appx

    Thanks for answer...
     
  11. cengizhan

    cengizhan MDL Senior Member

    Jul 29, 2009
    478
    154
    10
    i have given up. i have tried everything. updating apps offline using dism doesn't work. only updating them in audit mode using powershell works.
     
  12. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,211
    90,794
    340
    #992 abbodi1406, Aug 22, 2015
    Last edited by a moderator: Apr 20, 2017
    Removing all apps except Store, while the system is running
    for clean uninstall by PS:
    Code:
    Get-AppxPackage | % {if (!($_.IsFramework -or $_.PublisherId -eq "cw5n1h2txyewy" -or $_.Name -eq "Microsoft.WindowsStore" -or $_.Name -eq "Microsoft.MicrosoftEdge")) {$_}} | Remove-AppxPackage
    
    then re-install one of them (that has it as dependency) from Store
    Get Started / Photos / People / Camera / Phone / Maps / XBox / Bing MSN apps
     
  13. damianfox

    damianfox MDL Senior Member

    Jan 23, 2011
    423
    309
    10
    All you need to do is after a clean install is run the KB3081444 .msu file and you'll be fine. This is assuming of course you've installed Windows with the cable modem unplugged and once installed you've turned off auto-updates.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,469
    2,485
    120
    #994 moderate, Aug 22, 2015
    Last edited by a moderator: Apr 20, 2017
  15. Hadron-Curious

    Hadron-Curious MDL Guru

    Jul 4, 2014
    3,725
    600
    120
    #995 Hadron-Curious, Aug 23, 2015
    Last edited by a moderator: Apr 20, 2017
    Of what use is the store if all apps are removed from the system?
     
  16. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,211
    90,794
    340
    To furfill the request
     
  17. Hadron-Curious

    Hadron-Curious MDL Guru

    Jul 4, 2014
    3,725
    600
    120
    That makes a lot of sense. I don't really understand why somebody would request for something of that nature though. Thank you for clearing that up.
     
  18. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,469
    2,485
    120
    Well, it isn't required, that you understand. :p
     
  19. tistou77

    tistou77 MDL Expert

    Mar 22, 2008
    1,947
    612
    60
    Nobody installs / integrates hotfixes in "LDR" ?
     
  20. tamas970

    tamas970 MDL Novice

    Nov 13, 2013
    14
    5
    0
    Hotfix integration


    I do - these: 3074678, 3074686, kb3081441, kb3081444

    U need the latest ADK (
    msdn.microsoft.com/en-us/windows/hardware/dn913721.aspx -sry, not allowed to post links :mad:), and run DISM from its folder (provided your iso is extracted to D:\Win10 and your updates downloaded to d:\updates):


    cd C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM

    dism /mount-wim /wimfile D:\Win10\sources\install.wim /mountdir D:\wim /index:1

    dism /image D:\wim /Add-Package /PackagePath D:\updates

    dism /Unmount-Wim /MountDir D:\wim /commit