Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to the Power Users community on Codidact!

Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.

Post History

66%
+2 −0
Q&A Why does the free space on the system partition is way less than disk space minus space used by all folders/files in Windows 11?

It seems that a normal Windows user cannot access some files even if they are an administrator, so some files such as those related to system protection (restore) and Shadow Copies. The space requ...

posted 6mo ago by Alexei‭

Answer
#1: Initial revision by user avatar Alexei‭ · 2023-11-12T19:42:19Z (6 months ago)
It seems that a normal Windows user cannot access some files even if they are an administrator, so some files such as those related to system protection (restore) and Shadow Copies.

The space required by these special files becomes more obvious when running as an Admin: Settings -> Storage -> Show more categories -> System & reserved -> System restore -> Manage system restore -> Disk Space Usage.

For me, the System Protection UI (yes, there seems to be some naming inconsistency here) was confusing because I had the option Disable system protection selected, but the disk space usage had a very large maximum and quite a large already used space.

If I understood correctly, this space is shared between system protection (restore) and shadow copies made by Volume Shadow Copy Service.

To understand more about what exactly happens (the UI seems quite a mess) I have used the CLI as indicated in [this article](https://www.tenforums.com/tutorials/131901-see-list-all-available-system-restore-points-windows.html):

- List all available restore points for all drives: `vssadmin list shadows
`
- Remove a specific shadow (not shadow copy set ID): `vssadmin delete shadows /Shadow={shadow Copy ID from the list}`