Fix Scanner Not Detected by Windows Fax and Scan on Windows 11

Quick fix: Windows Fax and Scan needs the scanner driver and the Windows Image Acquisition (WIA) service. Open services.msc, find Windows Image Acquisition (WIA), set Startup type to Automatic and Start. Then in Windows Fax and Scan, click New Scan → Change → pick scanner. If scanner doesn’t appear, install the manufacturer’s WIA driver. You … 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

How to Reset App Permissions Without Reinstalling Apps on Windows 11

Quick fix: Open Settings → Privacy & security. For each permission (Camera, Microphone, Location, etc.) listed in the sidebar, click to open. Set system-wide toggle on, then disable/re-enable per-app permissions. Or use Settings → Apps → Installed apps → [app] → Advanced options → Reset to reset all permissions for one app. An app lost … Read more

How to Mount the Hidden Recovery Partition on Windows 11

Quick fix: From Terminal (Admin), use diskpart: diskpart → list volume → identify Recovery partition (~500 MB, FAT32) → select volume N → assign letter=R. Recovery partition is now accessible at R: in File Explorer. Browse contents, but don’t modify Microsoft-owned files. After inspection: remove letter=R. You want to inspect the hidden Recovery partition — … Read more

How to Install Optional Drivers Without Forcing System Updates on Windows 11

Quick fix: Open Settings → Windows Update → Advanced options → Optional updates. Driver updates appear here separately from system updates. Tick the specific drivers you want, click Download & install. System updates stay deferred according to your other settings. Windows Update bundles drivers with system updates by default. You want a specific driver (Wi-Fi, … Read more

How to Stop Search Indexer From Maxing Out the Disk on Windows 11

Quick fix: Open Control Panel → Indexing Options → Modify. Untick large folders that generate constant churn (node_modules, build outputs, OneDrive cache). Then Advanced → Rebuild. After rebuild, indexer settles to baseline. For permanent low-CPU: disable Windows Search service entirely if you don’t use Start menu/File Explorer search. Task Manager shows Microsoft Windows Search Indexer … Read more