Shrinking the volume of your HDD will not free up more usable storage space—it only reduces the partition size, which doesn't help if your disk is already near full capacity. Instead, shrinking a volume is typically used to create unallocated space for other partitions.
Since you mentioned that you don’t have many apps installed, your storage might be occupied by:
- Large personal files (e.g., videos, photos, downloads)
- Temporary and cache files
- Hidden system files, restore points, or Windows update backups
- Hibernation file (
hiberfil.sys
) and page file (pagefile.sys
)
To free up space for future updates:
- Run Disk Cleanup:
- Press
Win + R
, typecleanmgr
, and select your drive (usuallyC:
). - Click Clean up system files to remove Windows Update leftovers, old system restore points, and temporary files.
- Press
- Check Large Files Manually:
- Use
Win + E
> Right-clickC:\
>Properties
>Disk Cleanup
>More Options
>Clean up
under "System Restore and Shadow Copies". - Use Storage Sense (
Settings
>System
>Storage
) to find and delete large or unnecessary files.
- Use
- Move Files to an External Drive or Cloud:
- Store photos, videos, and other large files in OneDrive, Google Drive, or an external HDD.
- Disable Hibernation (if not needed):
- Open Command Prompt (Admin) and run:
powercfg -h off
- This deletes the
hiberfil.sys
file, which can take up several GBs.
- Open Command Prompt (Admin) and run:
- Uninstall Unused Apps & Features:
- Go to
Settings
>Apps
and remove unnecessary programs.
- Go to
As far as shrinking a volume goes, the operation is safe if done correctly, but it does not reduce the actual storage used—it only reallocates available space between partitions, so there is no need for you to do this.
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin