How to Search Inside File Contents on Windows 11 File Explorer

Quick fix: By default File Explorer searches filenames only. To search inside file contents: open Folder Options → Search tab → tick Always search file names and contents. Or use search syntax: type content:"exact phrase" in the search box. Indexed folders return content matches instantly; non-indexed folders scan in real time. You remember a phrase … Read more

How to Use Robocopy With Progress and Resume on Windows 11

Quick fix: From Terminal, run robocopy "source" "destination" /E /MT:8 /R:3 /W:5 /ETA /TEE /LOG+:robocopy.log. The /E copies all subfolders, /MT:8 multi-threads, /R:3 /W:5 retries 3 times with 5-second waits, /ETA shows estimated time, /TEE logs to console AND file. Resume by re-running the same command — robocopy skips already-copied files. Robocopy is the most … Read more

Why Some Files Show 0 Bytes But Take Space on Disk on Windows 11

Quick fix: Files showing 0 bytes in File Explorer but Properties showing “Size on disk” greater than 0 are usually OneDrive cloud-only placeholders, sparse files, or NTFS alternate data streams. For OneDrive: right-click → Always keep on this device downloads full contents. For sparse files: data exists in “allocated” ranges only; the rest is virtually … Read more

How to Identify Hidden Streams in NTFS Files on Windows 11

Quick fix: NTFS supports alternate data streams (ADS) — hidden secondary content attached to files. To list streams: open Terminal → dir /R in any folder. Streams appear as filename:streamname:$DATA. To inspect: more < filename:streamname. To delete a stream: PowerShell Remove-Item -Stream streamname filename. NTFS files can have additional “streams” beyond the main content. The … Read more

Why Pinning a Folder to Quick Access Fails Silently on Windows 11

Quick fix: Pin to Quick Access fails when the Quick Access database is corrupted. Delete %AppData%\Microsoft\Windows\Recent\AutomaticDestinations\f01b4d95cf55d32a.automaticDestinations-ms. Restart Explorer. Pin folders again — they now save correctly. You right-click a folder → Pin to Quick access. Nothing visible happens. Folder doesn’t appear in Quick Access. Or it appears briefly then disappears after reboot. The cause: corrupted … Read more

Fix File Properties Compatibility Tab Missing on Windows 11

Quick fix: Compatibility tab in EXE Properties is hidden by default for some files (UWP apps, signed executables). For Win32 EXEs that should show it: right-click the EXE → Properties → Compatibility. If missing entirely: enable via Group Policy → Computer Configuration → Administrative Templates → Windows Components → Application Compatibility → Remove Program Compatibility … Read more

How to Compress Folders With NTFS Compression on Windows 11

Quick fix: Right-click folder → Properties → Advanced button. Tick Compress contents to save disk space. Apply → choose “Apply to subfolders and files.” NTFS transparently compresses files. Read/write speed slightly slower but works seamlessly. Best for text, logs, source code; poor for media (already compressed). NTFS includes built-in transparent compression. Files appear normal in … Read more

How to Remove Recent Files From Quick Access on Windows 11

Quick fix: Open File Explorer → three-dot menu → Options. On General tab, under Privacy: untick Show recently used files. Click Clear next to “Clear File Explorer history.” Apply. Recent files no longer appear in Quick Access. Quick Access in File Explorer shows recent files and frequent folders. For privacy or clutter reasons, you want … Read more