search
HomeCommon ProblemWindows 11 default apps apparently take up more than 1.5GB of disk space

Windows 11 默认应用显然占用了超过 1.5GB 的磁盘空间

Like many different operating systems, among other products, Microsoft also provides a bunch of default apps for its Windows 11, Windows 10, and more. While some users of these apps find them helpful, others may find them more like bloatware.

If you fall into the second category of users, then you may often wonder how much disk storage space these applications take up.

Using the superpowers provided by PowerShell, this site was able to calculate the reported size of the default Windows 11 application, as shown in the image below. The applications have been sorted in descending order by size in bytes, which means Microsoft Teams is the largest one as it apparently consumes 91MB.

Windows 11 默认应用显然占用了超过 1.5GB 的磁盘空间

Seeing that some of the listed apps, like the Microsoft Store Purchase app, only took up 11kB of space, we did some more digging. It was found to have two separate folders and the total size of the application is actually around 37MB, as shown in the "Sum" portion of the image below. This is nearly a 3500x increase from 11kB.

Windows 11 默认应用显然占用了超过 1.5GB 的磁盘空间

This exercise was conducted against all default Windows 11 applications, which total approximately 1.6GB in size.

Windows 11 默认应用显然占用了超过 1.5GB 的磁盘空间

While this isn’t a lot of disk space for those who use the Windows 11 apps provided by default, it will be useful for those who rarely or never use these apps. Other users may want to delete and "erase" their Windows 11 installation.

Here's how to view the size of all Windows apps in PowerShell, including the size of default apps and apps downloaded from the Microsoft Store, by using the following script:

Get-AppxProvisionedPackage -online | % {	# Get the main app package location using the manifest	$loc = Split-Path ( [Environment]::ExpandEnvironmentVariables($_.InstallLocation) ) -Parent	If ((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

However," The WindowsApps folder is usually hidden by default, so be sure to unhide it first.

The above is the detailed content of Windows 11 default apps apparently take up more than 1.5GB of disk space. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:云东方. If there is any infringement, please contact admin@php.cn delete

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.