- Mar 1, 2024
- 1,699
What all this app runtime installations on my Windows 11 machine? And do I need them, or is it safe to remove them?
Thank you for the clarification. What is your advice about uninstalling them, is it safe, or I have to let them on my computer?
Based on the file names in the image, the following package names can be inferred:From the file names given in the image, find the package name(s)
show me the powershell code to uninstall these packages
Get-AppxPackage -Name Microsoft.WindowsAppRuntime.Singleton | Remove-AppxPackage
Use code with caution.Get-AppxPackage -Name Microsoft.WindowsAppRuntime | Remove-AppxPackage
What all this app runtime installations on my Windows 11 machine? And do I need them, or is it safe to remove them?View attachment 283582
No I didn't, I remember they appeared after running the following code in the terminal:Did you install Windows App SDK ?
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
No I didn't, I remember they appeared after running the following code in the terminal:
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Thank you for the clarification. What is your advice about uninstalling them, is it safe, or I have to let them on my computer?This is a CmdLine that can reinstall and re-register apps from the Microsoft Store. It could install some Windows App Runtime components if installed apps require them. For example, I also have on my computer similar components except for Windows App Runtime DDLM.
Post edited.
Thank you for the clarification. What is your advice about uninstalling them, is it safe, or I have to let them on my computer?
Thank yo so much Andy, you are a lifesaver.Windows App Runtime components are trustworthy. If you uninstall them, some already installed UWP apps can work improperly.
You're welcome.Thank yo so much Andy,