How to Safely Disable Hibernation on Windows 11 to Reclaim Storage

Quick fix: Open Command Prompt (Admin). Run: powercfg /hibernate off. The hiberfil.sys file (often 4-10GB+) is deleted. Hibernate is now disabled. You won’t see Hibernate in the Power menu. Sleep mode still works. To re-enable: powercfg /hibernate on. The hibernation file (hiberfil.sys) stores RAM contents on disk when you hibernate, so the PC can resume … Read more

How to Adjust Shadow Copy Storage Allocation on Windows 11

Quick fix: Open Command Prompt (Admin). Run: vssadmin list shadowstorage to see current allocation. To resize: vssadmin resize shadowstorage /for=C: /on=C: /maxsize=20GB. This caps shadow storage at 20GB. To remove cap: use /maxsize=UNBOUNDED. Shadow copies older than the cap auto-delete. Shadow Copy (Volume Shadow Copy Service) creates point-in-time snapshots of disk content. Used by System … Read more

How to Manually Run Storage Sense Cleanup From Command Line

Quick fix: Open PowerShell (Admin). Run: Start-Process “cleanmgr.exe” -ArgumentList “/sagerun:1” -Verb RunAs. For Storage Sense specifically (not Disk Cleanup): there’s no direct CLI; trigger via registry: schtasks /run /tn “\Microsoft\Windows\DiskCleanup\SilentCleanup”. This runs the same cleanup that Storage Sense would. Storage Sense is the Windows 11 setting that auto-deletes temp files, old downloads, recycle bin items … Read more

How to Read an APFS Mac Drive on Windows 11 Without Reformatting

Quick fix: Install MacDrive (paid) or APFS for Windows by Paragon (paid, ~$50). Free alternative: apfs-fuse via WSL (read-only) or UFS Explorer Standard Recovery (free for read). After install, mount the Mac drive — appears as a drive letter in File Explorer. Copy files off. APFS is read-only; can’t write to it from Windows safely. … Read more

Why Files Reappear in Recycle Bin After Emptying on Windows 11

Quick fix: Open Command Prompt as Admin. Run: rd /s /q C:\$Recycle.Bin. This forces a complete rebuild of Recycle Bin folder. Reboot. For specific user: rd /s /q C:\$Recycle.Bin\[user-sid]. If files keep reappearing: cloud-sync (OneDrive) is restoring; check OneDrive’s Recycle Bin online. Files in Recycle Bin can reappear after “Empty” due to: corrupt Recycle Bin … Read more

How to Restore Files From an Older Windows 10 System Image on Windows 11

Quick fix: Windows 10 System Image files have .vhd or .vhdx extension inside WindowsImageBackup folder. To restore files: right-click .vhd → Mount. Drive letter assigned. Browse and copy files. Or extract whole image via wbadmin: wbadmin start recovery from Windows RE. For specific files: mount + copy is easier than full image recovery. Windows 10 … Read more

How to Compare Two Drives Using robocopy on Windows 11

Quick fix: Use robocopy in list mode (doesn’t copy, just lists differences): robocopy “C:\Source” “D:\Target” /e /l /njh /njs. Output: files that would be copied. /l = list only, /e = include subdirs, /njh /njs = no job header / summary. To compare bidirectionally: also robocopy “D:\Target” “C:\Source” /e /l /njh /njs. robocopy’s /l flag: … Read more

Why OneDrive Symlinks Break After a Profile Migration on Windows 11

Quick fix: OneDrive symlinks point to specific user folder path. Profile migration changes username path. Result: symlinks broken. Fix: re-create symlinks pointing to new OneDrive path. Open Admin cmd: mklink /D “C:\OldLink” “C:\Users\NewUser\OneDrive\TargetFolder”. Or remove and re-create OneDrive folder mappings via OneDrive settings. OneDrive uses local path like C:\Users\[name]\OneDrive\…. Symlinks pointing there break when username … Read more