this post was submitted on 21 Nov 2025
811 points (97.6% liked)

Technology

76986 readers
2967 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] mech@feddit.org 204 points 1 day ago* (last edited 1 day ago) (36 children)

Microsoft says that it is working on a fix but, for now, has provided a couple of workarounds to deal with the issue. First, Microsoft says that restarting the Shell Infrastructure host (SIHost.exe) service will help restore the missing Immersive Shell packages. This can be done with the following commands:

Add-AppxPackage -Register -Path 'C:\Windows\SystemApps\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\appxmanifest.xml' -DisableDevelopmentMode  
Add-AppxPackage -Register -Path 'C:\Windows\SystemApps\Microsoft.UI.Xaml.CBS_8wekyb3d8bbwe\appxmanifest.xml' -DisableDevelopmentMode  
Add-AppxPackage -Register -Path 'C:\Windows\SystemApps\MicrosoftWindows.Client.Core_cw5n1h2txyewy\appxmanifest.xml' -DisableDevelopmentMode  

Second, a PowerShell logon script has been shared that essentially blocks Explorer from launching prematurely until the required packages are fully provisioned. The batch script for that is given below:

@echo off  
REM Register MicrosoftWindows.Client.CBS  
powershell.exe -ExecutionPolicy Bypass -Command "Add-AppxPackage -Register -Path 'C:\Windows\SystemApps\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\appxmanifest.xml' -DisableDevelopmentMode"
REM Register Microsoft.UI.Xaml.CBS  
powershell.exe -ExecutionPolicy Bypass -Command "Add-AppxPackage -Register -Path 'C:\Windows\SystemApps\Microsoft.UI.Xaml.CBS_8wekyb3d8bbwe\appxmanifest.xml' -DisableDevelopmentMode"  
REM Register MicrosoftWindows.Client.Core  
powershell.exe -ExecutionPolicy Bypass -Command "Add-AppxPackage -Register -Path 'C:\Windows\SystemApps\MicrosoftWindows.Client.Core_cw5n1h2txyewy\appxmanifest.xml' -DisableDevelopmentMode"  

I swear to god, if I hear "Windows just works" one more goddamn time...

[–] joyjoy@lemmy.zip 87 points 1 day ago (28 children)

"Windows just works"

When did Microsoft steal Apple's marketing material?

[–] Valmond@lemmy.world 15 points 1 day ago (16 children)

Well compated to others it did kind of just work. Plug&play, USB, most simple peripherics didn't need a driver to be manually installed and configured.

Windows 98 I guess.

[–] dual_sport_dork@lemmy.world 22 points 1 day ago (5 children)

Windows 98 SE, maybe. We didn't gain much traction there until about Win2k or XP.

Windows 98 in its original flavor didn't even support USB mass storage devices out of the box without drivers. Hands up everyone who remembers having to carry around one of those tiny driver CDs that came in the box with every single Sandisk Cruzer for a couple of years? Yeah? How quickly we forget.

[–] erictile@lemmy.world 1 points 18 hours ago* (last edited 18 hours ago)

Windows 98 SE doesn't have it out of the box either. While it came well after Windows XP had taken over, in 2005 Maximus Decim released his USB drivers, which cobbles together USB mass storage drivers from newer versions of Windows, with modifications to get them working on Windows 98 with just an installer.

[–] Valmond@lemmy.world 1 points 14 hours ago

Yeah usb came with 98-SP2 IIRC

[–] erictile@lemmy.world 1 points 18 hours ago (1 children)

Windows 98 SE doesn't have it out of the box either. While it came well after Windows XP had taken over, in 2005 Maximus Decim released his USB drivers, which cobbles together USB mass storage drivers from newer versions of Windows, with modifications to get them working on Windows 98 with just an installer.

https://forum.vcfed.org/index.php?threads/win-98se-usb-issues.1240710/ https://msfn.org/board/topic/43605-maximus-decim-native-usb-drivers/

[–] erictile@lemmy.world 3 points 18 hours ago (1 children)

By the way, if someone is looking to actually use it, I just want to warn that version 3.6 replaces the System Control Panel component with the one Windows ME, which has a different look and feel and misreports the OS version. Version 3.5 doesn't do that and has worked with every flash drive I've tried, so I'd recommend that version.

[–] chunkystyles@sopuli.xyz 2 points 18 hours ago

I guarantee I will never use this information. But thank you anyway.

[–] erictile@lemmy.world 1 points 18 hours ago* (last edited 18 hours ago)
load more comments (10 replies)
load more comments (21 replies)
load more comments (28 replies)