This is the amount of space that default Windows 11 applications are taking up on your PC
There is no denying that these are mostly useful applications, but in some situations, they can also bring a lot of trouble to users, such as taking up system storage space.
If this is the situation you're in, you're most likely wondering how much storage space these pre-installed apps take up on your PC. A new report from Oofhours sheds some light on this question.
Through a few PowerShell tricks, Oofhours engineers figured out the size of default Windows 11 apps. As can be seen in the screenshot below, the apps are sorted in descending order of size (in bytes). In which, Microsoft Teams is the largest application when it takes up 91MB of storage space.
However, anomalies have been recorded when some applications such as Microsoft Store Purchase are confusingly lightweight, only 11kB. Several other studies have been done to clarify this issue. The results show that there seem to be two separate folders for this application, and if combined, the actual total size of this application is about 37MB.
Of course, this is not the case only with Microsoft Store Purchase. After reviewing and summarizing, the Oofhours team has come to the conclusion that Windows 11's default applications are taking up about 1.6GB of storage space on the system.
To be fair, this is not a large number for modern PC systems, but also not small for those who rarely or never use these applications.
If you want to check the size of all installed apps on your Windows PC via PowerShell (including default apps and apps downloaded from Microsoft Store), you can simply launch PowerShell using use the script below:
Get-AppxProvisionedPackage -online | % { # Get the main app package location using the manifest $loc = Split-Path ( [Environment]::ExpandEnvironmentVariables($_.InstallLocation) ) -ParentIf ((Split-Path $loc -Leaf) -ieq 'AppxMetadata' ) { $loc = Split-Path $loc -Parent } # Get a pattern for finding related folders $matching = Join-Path -Path (Split-Path $loc -Parent) -ChildPath "$($_.DisplayName)*" $size = (Get-ChildItem $matching -Recurse -ErrorAction Ignore | Measure-Object -Property Length -Sum).Sum # Add the results to the output $_ | Add-Member -NotePropertyName Size -NotePropertyValue $size $_ | Add-Member -NotePropertyName InstallFolder -NotePropertyValue $loc $_ } | Select DisplayName, PackageName, Version, InstallFolder, Size
Note that the "WindowsApps" folder is usually hidden by default, so you should unhide it first.
You should read it
- Remove all Bloatware apps on Samsung Galaxy S7 and S7 Edge
- How to install PowerShell 7.0 in Windows 10/8/7
- How to use PowerShell's default parameter to change the command behavior
- The latest Windows 10 version allows users to delete preinstalled applications on the OS
- What to do when Windows can't find PowerShell?
- Instructions on how to use PowerShell in Windows Server 2012
- How are Command Prompt (cmd) and PowerShell different?
- AdwCleaner 7.4 was officially launched, adding the ability to remove bloatware from Windows
May be interested
- How to reinstall the removed default application on Windows 10?if you accidentally uninstalled the wrong one or some of the default applications on windows 10 start menu, you don't need to worry too much. with just a few simple steps below, you can completely restore everything back to its original state.
- How to change the default webcam on a Windows 10 computerin the complicated situation of covid-19 spread, the need for distance learning and meeting is still very high. therefore, the demand for using webcam on computers is also increasing. applications like teams, skype, zoom ... all need a webcam.
- 7 ways to change default applications in Windowsyou can set up an application as default to open all file types that the program can handle or tweak applications to use only for specific file types, according to specific protocols. and even specific devices.
- How to set default applications on Androidsetting default applications on android is a simple way to help you choose default applications that will always run in every task on samsung, lg, asus, lenovo phones. follow the instructions in this tipsmake article to do it, okay?
- How to fix the Windows + Space key combination not working errorif you have multiple keyboard layouts you will have to frequently use windows + space to switch between them. however, after a few recent updates, some users have encountered a faulty windows + space button.
- How to set up the default application on iPhoneapple is known for limiting users to custom iphone. for example, every iphone has a set of pre-installed apps. users cannot delete these default applications and they can also be used as default applications for some related features or tasks.
- How to use applications and games without installationappscope is a collection of applications and games designed to work as a web platform that allows users to use it immediately without having to download and install on their device to avoid taking up space. memory.
- Using application notes To write on Windows 10to write is a note-taking application on windows 10, possessing many note-taking features such as creating task lists, recordings, drawings, reminders, ...
- Expand the system partition in Windows 7as you know, the operating system partition is the place where more space should be saved. applications such as hotfixes, patches, service packs will take up a lot of space in this partition. if you use these applications much, more space is needed.
- How to fix the error does not install the default Windows 10 applicationwindows 10 supports users to install the default browser or application on the computer. files and links will automatically be opened according to the default installed application. however, if the settings is faulty and we cannot set the default application on windows 10, how do we do it?