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

How to Use Windows 11 to Print Multiple Files at Once

Quick fix: Select multiple files in File Explorer (Ctrl+click or Shift+click). Right-click → Print. Each file opens in its associated app and prints. For PDFs specifically: install Adobe Reader; multi-select PDFs → right-click → Print. For images: same right-click Print, opens Photos Print Pictures dialog. Windows native: right-click selected files → Print. Each file uses … Read more

How to Disable Driver Quality Updates on Windows 11 Without Disabling Patches

Quick fix: Group Policy: gpedit.msc → Computer Configuration → Administrative Templates → Windows Components → Windows Update → Manage updates offered from Windows Update → find Do not include drivers with Windows Updates. Set to Enabled. gpupdate /force. Security and quality patches still install; drivers excluded. For Home: registry: HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\ExcludeWUDriversInQualityUpdate = 1. Driver updates can … Read more

Fix Display Resolution Resets to 1024×768 After Windows 11 Sleep

Quick fix: Display resolution resetting to 1024×768 after sleep means: graphics driver failed to detect monitor properly. Update GPU driver from manufacturer (Nvidia, AMD, Intel). For Nvidia: install Studio driver (more stable than Game Ready). Disable adapter sleep: Device Manager → Display adapters → right-click GPU → Properties → Power Management → untick “Allow the … Read more

How to Disable Edge Telemetry From Settings on Windows 11

Quick fix: Open Edge → edge://settings/privacy. Disable: Help improve Microsoft products, Allow Microsoft Edge to improve search and product experiences, Improve search experiences with browsing history. Plus Block trackers: Strict. For deeper: edge://settings/system → disable Use a prediction service to load pages more quickly and Use Microsoft services to provide an enhanced spell-check experience. Edge … Read more

How to Track Microsoft Store Download Speed in Real Time

Quick fix: Open Task Manager (Ctrl+Shift+Esc). Switch to Performance tab. Click Ethernet or Wi-Fi. Shows real-time receive/send rate. Or open Resource Monitor (resmon.exe) → Network tab. Filter by process: WinStore.App.exe and DOSvc (Delivery Optimization). For graphical: download tools like NetSpeedMonitor. Microsoft Store downloads bandwidth visible in Task Manager / Resource Monitor. Filter for Microsoft Store … Read more

How to Lock Down Settings Pages for Other Users on Windows 11

Quick fix: Group Policy: gpedit.msc → User Configuration → Administrative Templates → Control Panel → Hide specified Control Panel items → Enabled → Show → add page identifiers. Or modern Settings: registry: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer → create REG_SZ SettingsPageVisibility → value hide:apps;updateandsecurity. Lock specific pages for non-admin users. Hide / restrict Settings pages for other users. Useful … Read more

How to Verify Securely Wiped Drives After Reset This PC on Windows 11

Quick fix: After Reset This PC → Fully clean the drive, verify with Recuva (free recovery tool). Install → scan drive → if no files recoverable: wipe successful. For deeper verification: PhotoRec scans raw sectors. For complete proof: ddrescue image to file + hex view shows zeros. For SSDs: fsutil behavior set DisableDeleteNotify 0 ensures … Read more