@abbodi1406 : I have a question regarding your October 7th 2018 script. I installed 1809 LTSC EN-US to my laptop, used KMS_VL_ALL to activate. Installed drivers for my laptop, then changed the DNS to 1.1.1.1/1.0.0.1, as I don't like my ISP DNS, then installed the Oct 7th script to install MS Store. There were no errors when installing. Rebooted, started the store, and it says MS Store needs to be online, looks like its not, with error 0x80072EFD. Used the powershell command in the very first post of the this thread, rebooted, same error. Tried WSReset, same error. I am online, as I'm posting from said laptop, so I am unsure on how to proceed. Please help.
How would I go about removing the store related files, and starting again, without reformatting? Apart from the store, I have it set up how I would like, and would hate to start from scratch.
Please don't hit me (and not ask why i use LTSC Version then) but i'm only interested if it is possible to get Cortana working on LTSC release and how.
Run powershell as admin: Code: Get-AppXPackage -Name "*WindowsStore*" | Foreach {Remove-AppxPackage $_.PackageFullName} Get-AppxProvisionedPackage -Online | Where DisplayName -eq Microsoft.WindowsStore | Remove-AppxProvisionedPackage -Online
I have no problems getting MicrosoftStore-RS5.7z to work on LTSC 2019, but on LTSC N 2019 the store opens and closes promptly. Same computer, and tried several times a clean install. Could it be the license xml's are targeted at LTSC 2019 and not at the N edition? (Just as the N version has its own product key)
No, Appx licenses are universal it could be related to missing media foundation components in N editions
I want to deploy windows ltsb with store and some apps like camera and photos with this Script (neowin.net/forum/topic/1317186-store-apps-on-ltsb-now-possible-the-best-of-both-worlds/) It works but the Apps only appaer at Start on Administrator account and not for e.g. a Test User. I got it worked for one time and the apps where visible at Startmenu on the Test account i created after running this script and installed the apps. But the second time i can't get it to work. Can somebody help me how I can install the Apps for all Users.(available for new created Users)
is there a way to fix this? i installed the store & the xbox app now, but i get error 0x409 0x80131519 when i open te xbox app, cant sign in. googled info about it but all the solutions didnt work for me. followed info on page 25: uninstall everything and re-install everything but xboxidentityprovider and use a different version (install Microsoft.XboxIdentityProvider_2017.523.613.0_neutral_~_8wekyb3d8bbwe from page25) now the error changed to 0x409 0x80070002 im out of ideas.
hey.. so i downloaded the MicrosoftStore-RS5 archive, and the store got installed and opened successfully, but it shows no taskbar icon, and when i try to install an app it gives me an error, "we'll try shortly" how to fix that??
Right-click and run Add-Store.cmd as administrator if you previously had failure installation or other methods, clean all Apps run in admin powershell Code: Get-AppxPackage | Remove-AppxPackage Get-AppxProvisionedPackage -Online | Foreach {Remove-AppxProvisionedPackage -PackageName "$($_.PackageName)" -Online} reboot then try Add-Store.cmd again
All apps Code: Get-AppXPackage | Foreach {Remove-AppxPackage $_.PackageFullName} Get-AppxProvisionedPackage -Online | Remove-AppxProvisionedPackage -Online Specific Code: Get-AppXPackage -Name "*WindowsStore*" | Foreach {Remove-AppxPackage $_.PackageFullName} Get-AppxProvisionedPackage -Online | Where DisplayName -eq Microsoft.WindowsStore | Remove-AppxProvisionedPackage -Online execute in powershell as administrator