You mean Windows Spotlight? that's part of ContentDeliveryManager, and controlled by product policy cannot be changed
yes spotlight that shows images on lockscreen. can't we change contentdeliverymanager of ltsc with pro version to get it? cuz i can delete the contentdeliverymanager it is a component just like microsoft store and other apps. can u have a look at it?
It's already the same package in all editions, but the config is controlled by license policies removing and adding won't change it Code: EnterpriseS ContentDeliveryManager-License-ContentDeliveryAllowed=0 Education ContentDeliveryManager-License-ContentDeliveryAllowed=1 Enterprise ContentDeliveryManager-License-ContentDeliveryAllowed=2 Pro ContentDeliveryManager-License-ContentDeliveryAllowed=3 Pro Workstation ContentDeliveryManager-License-ContentDeliveryAllowed=5
I installed MicrosoftStore-RS5.7z and it failed. How to completely remove everything so i can start over?
Anyone care to explain the link about the part of removing app packages and store app in details would be very appreciated. https://forums.mydigitallife.net/posts/1468779
Run Windows Powershell as administrator copy and paste these two commands one by one and paste Code: Get-AppXPackage | Foreach {Remove-AppxPackage $_.PackageFullName} Get-AppxProvisionedPackage -Online | Remove-AppxProvisionedPackage -Online restart computer
Thanks. I installed MicrosoftStore-RS5.7z with all packages included. Does your 2 command remove both apps and Windows Store?
Is there any way to clean out apps from the store library that I'm never going to use or apps that were tried, but found to be garbage? Restoring a previous image doesn't even help undoing entries in the library.
If anyone cares to mount his install.wim, and add MSStore I wrote a batch file to do that with DISM. Translation to PS would be appreciated. I shortened names, and you will need to alter paths, but it should be very understandable. Spoiler: install store to mounted wim Code: Set STORE=Mods\Bin\Store\Microsoft.WindowsStore.AppxBundle Set Framework6X64=Mods\Bin\Store\Microsoft.NET.Native.Framework.1.7_x64.Appx Set Framework6X86=Mods\Bin\Store\Microsoft.NET.Native.Framework.1.7_x86.Appx Set Runtime6X64=Mods\Bin\Store\Microsoft.NET.Native.Runtime.1.7_x64.Appx Set Runtime6X86=Mods\Bin\Store\Microsoft.NET.Native.Runtime.1.7_x86.Appx Set VCLibsX64=Mods\Bin\Store\Microsoft.VCLibs_x64.Appx Set VCLibsX86=Mods\Bin\Store\Microsoft.VCLibs_x86.Appx Set PurchaseApp=Mods\Bin\Store\Microsoft.StorePurchaseApp.AppxBundle Set Appinstaller=Mods\Bin\Store\Microsoft.DesktopAppInstaller.AppxBundle Set XboxIdentity=Mods\Bin\Store\Microsoft.XboxIdentityProvider.AppxBundle DISM /Image:%MOUNT% /Add-ProvisionedAppxPackage /PackagePath:%STORE% /DependencyPackagePath:%VCLIBSX64% /DependencyPackagePath:%VCLIBSX86% /DependencyPackagePath:%FRAMEWORK6X64% /DependencyPackagePath:%FRAMEWORK6X86% /DependencyPackagePath:%RUNTIME6X64% /DependencyPackagePath:%RUNTIME6X86% /LicensePath:Mods\Bin\Store\Microsoft.WindowsStore.xml DISM /Image:%MOUNT% /Add-ProvisionedAppxPackage /PackagePath:%APPINSTALLER% /DependencyPackagePath:%VCLIBSX64% /DependencyPackagePath:%VCLIBSX86% /DependencyPackagePath:%FRAMEWORK6X64% /DependencyPackagePath:%FRAMEWORK6X86% /DependencyPackagePath:%RUNTIME6X64% /DependencyPackagePath:%RUNTIME6X86% /LicensePath:Mods\Bin\Store\Microsoft.StorePurchaseApp.xml DISM /Image:%MOUNT% /Add-ProvisionedAppxPackage /PackagePath:%APPINSTALLER% /DependencyPackagePath:%VCLIBSX64% /DependencyPackagePath:%VCLIBSX86% /DependencyPackagePath:%FRAMEWORK6X64% /DependencyPackagePath:%FRAMEWORK6X86% /DependencyPackagePath:%RUNTIME6X64% /DependencyPackagePath:%RUNTIME6X86% /LicensePath:Mods\Bin\Store\Microsoft.DesktopAppInstaller.xml DISM /Image:%MOUNT% /Add-ProvisionedAppxPackage /PackagePath:%XBOXIDENTITY% /DependencyPackagePath:%VCLIBSX64% /DependencyPackagePath:%VCLIBSX86% /LicensePath:Mods\Bin\Store\Microsoft.XboxIdentityProvider.xml Set STORE= Set Framework6X64= Set Framework6X86= Set Runtime6X64= Set Runtime6X86= Set VCLibsX64= Set VCLibsX86= Set PurchaseApp= Set Appinstaller= Set XboxIdentity=
Where can I download latest StorePurchaseApp appx file? Latest version is "Microsoft.StorePurchaseApp_11810.1001.10.0_x64__8wekyb3d8bbwe" and "Microsoft.StorePurchaseApp_11810.1001.1013.0_neutral_~_8wekyb3d8bbwe" but in Store and on store.rg-adguard.net (FamilyPackageName: Microsoft.StorePurchaseApp_8wekyb3d8bbwe) does not found
Great news. Thank u bro for the quick reply! Your instruction is detailed, and it works perfectly. But I tried another way, uninstall all Universal apps, and sideload all necessary files by writing ps1 script, just Add-AppxPackage commands. It actually works, no use your cmd commands. Try to download apps and run, ok for now. Beside DesktopAppInstaller 1.0.20921.0 doesn't make crash like you said. Is it ok for the long run, will I meet any issues? I'm really appreciated!
You would need exprimental UUP dump miniserver https://forums.mydigitallife.net/posts/1450822/ but it's no longer available i have a working local copy if the author @mkuba50 allow me to share it -- what's the latest one? i tried CategoryID, give the same version
Sorry, I mean App Installer. I just need CategoryID for App Installer and Xbox Identity Provider (for complete updated Store). I'll use DISM iso image offline. And those dependencies like Microsoft.WinJS and Microsoft.Media.PlayReadyClient are needed to install old win8.1 app in windows 10? I'm collecting all dependencies to install at once.