Recent content by moonglade


  1. Solved Removing via PowerShell removes Win UI3 Explorer?

    Also for reference, my original command in the first post removes ALL Windows packages excluding the Microsoft Store. For testing this, I'd recommend using the command above that only removes this specific package rather than all packages.
  2. Solved Removing via PowerShell removes Win UI3 Explorer?

    Just for those reading this thread, here are commands you can use to test. In my own testing, it's only this package that dictates whether Win UI3 elements are active. Remove: Get-AppxPackage -allusers *Microsoft.WindowsAppRuntime.CBS* | Remove-AppxPackage Add: Get-AppxPackage -allusers...
  3. Solved Removing via PowerShell removes Win UI3 Explorer?

    Well the WinUI3 elements are just a cover for the original UI elements. I guess without this runtime installed they just didn't run. My file explorer and right click menu worked perfectly fine - and was faster as it wasn't running the new UI. But yes it was as though I didn't have the new parts...
  4. Solved Removing via PowerShell removes Win UI3 Explorer?

    Hi, it took some manual work but after comparing packages before and after, the answer is: *Microsoft.WindowsAppRuntime.CBS* This package is responsible for Web UI3. Solved for anyone wondering in the future.
  5. Solved Removing via PowerShell removes Win UI3 Explorer?

    For years I have used this command on Windows clean installs to remove bloatware: Get-AppxPackage -allusers | where-object {$_.name –notlike "*Microsoft.WindowsStore*"} | Remove-AppxPackage However I just did a clean install of Windows 11 22H2 Moment 4, and now after running this command, my...
Back
Top Bottom