Why USB-C Drives Show Up Twice in File Explorer on Windows 11

Quick fix: USB-C drives showing twice in File Explorer: once as Removable Disk, once as Local Disk. Cause: Windows detects USB-C drive’s metadata as both removable and fixed. Open Disk Management → right-click drive → Change Drive Letter and Paths → Remove the duplicate letter. You plug in USB-C external SSD. File Explorer shows two … Read more

How to Format a Drive in exFAT for Cross-Platform Compatibility on Windows 11

Quick fix: Open File Explorer. Right-click the drive → Format. In the dialog: File system: exFAT. Allocation unit size: 128KB for large files (videos), 32KB for general. Tick Quick Format. Click Start. Drive is exFAT — readable by Windows, macOS, Linux, Android (with apps), and most TVs. exFAT is Microsoft’s file system designed for flash … Read more

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