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
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
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
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.
This is the error code in event viewer : 80073CF3 which google says that a dependency package is missing.
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
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.
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...
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.
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
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.
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.
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 ), 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