Xbox app not updating or working

ChamberTech

New Member
Messages
10
Reaction score
0
Hey everyone I am creating a custom iso with windows 11 24h2 and everything seems to be working well except for the xbox app not working. This is something that I want working because of my game pass subscription. I've tried both the privacy and gaming preset and nothing works which makes me thing that it's something in the settings tab. If anyone has any experience i'd really appreciate it.
 

Attachments

You've changed DeliveryOptimization\DODownloadMode to 100, which is both deprecated in W11 and disables DO.

Windows Store, which the underlying platform for Xbox Game Pass, is entirely dependent on Delivery Optimization to download files. Also, not sure if some of your UAC changes might break UWP apps since they're picky about the security model. But try fixing DODownloadMode first.
 
For downloading from the Store, I don't know, but no problem getting the Apps to work with the UAC modified, removed (for the ones I use, tested)
 
You've changed DeliveryOptimization\DODownloadMode to 100, which is both deprecated in W11 and disables DO.

Windows Store, which the underlying platform for Xbox Game Pass, is entirely dependent on Delivery Optimization to download files. Also, not sure if some of your UAC changes might break UWP apps since they're picky about the security model. But try fixing DODownloadMode first.
Thank you for this. I'll try it in a bit. Do i have to leave it on default do you know or can i atleast disable it in some degree
 
Why not use mode 0?

Delivery Optimization reference
Download mode optionFunctionality when configured
HTTP Only (0)This setting disables peer-to-peer caching but still allows Delivery Optimization to download content over HTTP from the download's original source or a Microsoft Connected Cache server. This mode uses additional metadata provided by the Delivery Optimization cloud services for a peerless, reliable and efficient download experience.
LAN (1 - Default)This default operating mode for Delivery Optimization enables peer sharing on the same network. The Delivery Optimization cloud service finds other clients that connect to the Internet using the same public IP as the target client. These clients then try to connect to other peers on the same network by using their private subnet IP.
Group (2)When group mode is set, the group is automatically selected based on the device's Active Directory Domain Services (AD DS) site (Windows 10, version 1607) or the domain the device is authenticated to (Windows 10, version 1511). In group mode, peering occurs across internal subnets, between devices that belong to the same group, including devices in remote offices. You can use GroupID option to create your own custom group independently of domains and AD DS sites. Starting with Windows 10, version 1803, you can use the GroupIDSource parameter to take advantage of other method to create groups dynamically. Group download mode is the recommended option for most organizations looking to achieve the best bandwidth optimization with Delivery Optimization.
Internet (3)Enable Internet peer sources for Delivery Optimization.
Simple (99)Simple mode disables the use of Delivery Optimization cloud services completely (for offline environments). Delivery Optimization switches to this mode automatically when the Delivery Optimization cloud services are unavailable, unreachable, or when the content file size is less than 10 MB. In this mode, Delivery Optimization provides a reliable download experience over HTTP from the download's original source or a Microsoft Connected Cache server, with no peer-to-peer caching.
Bypass (100)Starting in Windows 11, this option is deprecated. Don't configure Download mode to '100' (Bypass), which can cause some content to fail to download. If you want to disable peer-to-peer functionality, configure DownloadMode to (0). If your device doesn't have internet access, configure Download Mode to (99). When you configure Bypass (100), the download bypasses Delivery Optimization and uses BITS instead. You don't need to configure this option if you're using Configuration Manager.
 
Update I set delivery optimization to default with everyone else the same and updates are still not working. Maybe I did something wrong but no dice
 
You've also banned any use of MS Accounts:
Code:
                                <Tweak name="System\NoConnectedUser">3</Tweak>

Fix on live system:
Code:
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v NoConnectedUser /f
 
Back
Top