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
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...
Answer
#1: Initial revision
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}`