mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 00:03:48 +00:00
[devdocs] Add disk usage footprint doc (#23248)
* [devdocs] Add disk usage footprint doc * Spelling * Add conclusion * Minor fix * Add version * Add more details * Update disk-usage-footprint.md (#23280) * Update disk-usage-footprint.md * Update disk-usage-footprint.md * Update expect.txt * Update doc/devdocs/disk-usage-footprint.md Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com> * Update doc/devdocs/disk-usage-footprint.md Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com> * Update doc/devdocs/disk-usage-footprint.md Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com> * Update doc/devdocs/disk-usage-footprint.md Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com> * Update doc/devdocs/disk-usage-footprint.md Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com> * Update doc/devdocs/disk-usage-footprint.md Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com> * Update doc/devdocs/disk-usage-footprint.md Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com> Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com> Co-authored-by: Clint Rutkas <clint@rutkas.com> Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com>
This commit is contained in:
parent
97e5e22b4e
commit
67ae9b0376
4
.github/actions/spell-check/expect.txt
vendored
4
.github/actions/spell-check/expect.txt
vendored
@ -1194,7 +1194,7 @@ NPH
|
||||
NResize
|
||||
NTAPI
|
||||
ntdll
|
||||
NTFS
|
||||
ntfs
|
||||
NTSTATUS
|
||||
nugets
|
||||
nullonfailure
|
||||
@ -1437,7 +1437,7 @@ rectp
|
||||
rects
|
||||
recyclebin
|
||||
redirectedfrom
|
||||
Redist
|
||||
redist
|
||||
redistributable
|
||||
reencode
|
||||
reencoded
|
||||
|
82
doc/devdocs/disk-usage-footprint.md
Normal file
82
doc/devdocs/disk-usage-footprint.md
Normal file
@ -0,0 +1,82 @@
|
||||
# PowerToys disk usage footprint overview
|
||||
|
||||
As of the v0.66 of PowerToys, core runtime dlls are being shipped self-contained as a part of PowerToys. During the installation process, hard-links are being created for every module that needs any of these shared libraries.
|
||||
|
||||
## Why do this work?
|
||||
|
||||
Our main motivations for doing are the following:
|
||||
|
||||
1. Be able to install PowerToys without UAC elevation
|
||||
2. PowerToys has a reduced disk space when components are shared.
|
||||
3. Reduce additional downloads for dependencies
|
||||
|
||||
## Current self-contained runtimes
|
||||
|
||||
These dll's are installed in `<PowerToysInstallDir>/dll/<Item>` folder structure.
|
||||
|
||||
- [Windows Application SDK runtime](https://learn.microsoft.com/windows/apps/windows-app-sdk/downloads)
|
||||
- [.NET Desktop Runtime 7](https://dotnet.microsoft.com/download/dotnet/7.0)
|
||||
- [Microsoft Visual C++ Runtime](https://learn.microsoft.com/cpp/windows/latest-supported-vc-redist?view=msvc-170)
|
||||
|
||||
## So why does PowerToys have a larger footprint now?
|
||||
|
||||
Before the hard-link work was done, each of these runtimes had to be installed, so there were more items being installed outside just the PowerToys install directory. This space would not have been accounted.
|
||||
|
||||
File Explorer treats hard-links the same as "original"/regular files/directories (https://learn.microsoft.com/troubleshoot/windows-server/backup-and-storage/disk-space-problems-on-ntfs-volumes#other-ntfs-features-that-may-cause-file-allocation-confusion), not as links. This results in File Explorer reporting size of PowerToys installation directory bigger than it is (more than 2GB).
|
||||
|
||||
## How much space is actually being used
|
||||
|
||||
As of v0.66 of PowerToys, the installed footprint is ~660MB.
|
||||
|
||||
When we were prototyping and validating, here was our running table of results and why we took the route we did.
|
||||
|
||||
| Moment | Installer size | App size | Installation dir size | Real size | Deps downloaded and installed during PT install | Total (installer size + real size + deps downloaded and installed during PT install) |
|
||||
|---|---|---|---|---|---|---|
|
||||
| v0.62.0.1<br/>no deps self-contained | 125 MB | 817 MB | 529 MB | 534 MB | 418 MB | 1,077 MB |
|
||||
| v0.63.0<br/>WAS and VCRedist | 83 MB | 587 MB | 567 MB | 396 MB | 394 MB | 873 MB |
|
||||
| v0.63.0<br/>WAS1.2preview and VCRedist| 80 MB | 574 MB | 539 MB | 385 MB | 394 MB | 859 MB |
|
||||
| Full Test<br/>WAS, VCRedist, .NET | 149 MB | 705 MB | 1,760 MB | 557 MB | 0 MB | 706 MB |
|
||||
|
||||
## Our process to verify current install footprint
|
||||
|
||||
We created a quick virtual machine. We chose to use our fresh Windows 10 test virtual machines here.
|
||||
|
||||
### Empty disk details
|
||||
|
||||
<img src="../images/disk-usage/empty_disk_details.png">
|
||||
|
||||
### Install PowerToys to empty disk
|
||||
|
||||
<img src="../images/disk-usage/PowerToys_install_dir.png">
|
||||
|
||||
### PowerToys installation directory size shown by File Explorer
|
||||
|
||||
As mentioned above, File Explorer shows size of PowerToys installation dir as every hard-link is a regular file for itself
|
||||
|
||||
<img src="../images/disk-usage/install_dir_size_v0.66.png">
|
||||
|
||||
### PowerToys size shown by App->Installed apps
|
||||
|
||||
<img src="../images/disk-usage/add_remove_size_v0.66.png">
|
||||
|
||||
### Disk usage with PowerToys installed
|
||||
|
||||
Real disk usage of PowerToys is shown by inspecting disk usage after installing PowerToys. Used space is now 695MB, comparing to ~35MB used space for empty disk gives us the size of ~660MB for PowerToys installation dir.
|
||||
|
||||
<img src="../images/disk-usage/used_disk_space_v0.66.png">
|
||||
|
||||
### PowerShell command calculating size of non-hardlinks files
|
||||
|
||||
Size of regular files (non-hard-links) and hard-links can also be obtained by running following PowerShell command in PowerToys installation dir:
|
||||
|
||||
```
|
||||
Regular files:
|
||||
ls -Recurse -File -force -ErrorAction SilentlyContinue | ? LinkType -ne HardLink | Measure-Object -Property Length -Sum
|
||||
|
||||
Hard-links
|
||||
ls -Recurse -File -force -ErrorAction SilentlyContinue | ? LinkType -e HardLink | Measure-Object -Property Length -Sum
|
||||
```
|
||||
|
||||
Running these commands for PowerToys v0.66 shows that size of regular files is way less than size of hard-links pointing to some of those regular files because PowerShell (same as File Explorer) also takes the size of hard-links as of regular files.
|
||||
|
||||
<img src="../images/disk-usage/pwsh_v0.66.png">
|
BIN
doc/images/disk-usage/PowerToys_install_dir.png
Normal file
BIN
doc/images/disk-usage/PowerToys_install_dir.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
doc/images/disk-usage/add_remove_size_v0.66.png
Normal file
BIN
doc/images/disk-usage/add_remove_size_v0.66.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.6 KiB |
BIN
doc/images/disk-usage/empty_disk_details.png
Normal file
BIN
doc/images/disk-usage/empty_disk_details.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 57 KiB |
BIN
doc/images/disk-usage/install_dir_size_v0.66.png
Normal file
BIN
doc/images/disk-usage/install_dir_size_v0.66.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
BIN
doc/images/disk-usage/pwsh_v0.66.png
Normal file
BIN
doc/images/disk-usage/pwsh_v0.66.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
BIN
doc/images/disk-usage/used_disk_space_v0.66.png
Normal file
BIN
doc/images/disk-usage/used_disk_space_v0.66.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 58 KiB |
Loading…
Reference in New Issue
Block a user