How to Disable Compress Old Files in Disk Cleanup on Windows 11

Quick fix: The “Compress Old Files” option in Disk Cleanup is deprecated in modern Windows. To disable any residual behavior: open Registry Editor → navigate to HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches → find Compress old files subkey → delete or rename. Reboot. Disk Cleanup no longer offers this option. “Compress old files” was a Disk Cleanup feature that compressed … Read more

How to Restore Default Quick Settings Tiles on Windows 11

Quick fix: Open Quick Settings (Win+A). Click the pencil icon at the bottom right. Click Done on default tiles by clicking Add → check tiles you want, untick others. To revert all to defaults: use registry to clear: delete HKCU\Software\Microsoft\Windows\CurrentVersion\ControlCenter. Sign out, sign back in. Quick Settings shows default tile layout (Wi-Fi, Bluetooth, Battery saver, … Read more

How to Suspend BitLocker for Hardware Maintenance on Windows 11

Quick fix: Open Command Prompt (Admin). Run: manage-bde -protectors -disable C: -RebootCount 1. BitLocker suspends until the next reboot, then auto-re-enables. For multi-reboot maintenance: -RebootCount 3 (3 reboots before auto-re-enable). For permanent suspend: omit RebootCount. To resume manually: manage-bde -protectors -enable C:. BitLocker protects the drive but locks the boot environment to specific TPM measurements. … Read more

How to Leave the Windows Insider Program Cleanly on Windows 11

Quick fix: Open Settings → Windows Update → Windows Insider Program. Click Stop getting preview builds → toggle on Unenroll this device immediately (only available when on stable channel) OR Unenroll this device after the next major version release. To leave entirely without waiting: clean-install Windows 11 stable build via ISO from microsoft.com/software-download/windows11. The Windows … Read more

How to Disable Driver Updates via Group Policy on Windows 11 Pro

Quick fix: Open gpedit.msc (Pro/Enterprise). Navigate to 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. Apply → gpupdate /force. Driver updates are blocked from Windows Update channel. Windows Update pushes driver updates by default. … Read more

How to Export Edge Passwords as CSV on Windows 11

Quick fix: Open Edge → edge://settings/passwords. Click the three-dot menu → Export passwords. Confirm with Windows Hello / password. Save .csv file to chosen location. The CSV has columns: name, URL, username, password. Store securely — this file is unencrypted. Migrating to a password manager (Bitwarden, 1Password, KeePass) or another browser (Chrome, Firefox)? You need … Read more

How to Use Magnifier With Lens Mode for Better Readability on Windows 11

Quick fix: Open Settings → Accessibility → Magnifier. Toggle on. Under View, pick Lens. A rectangular lens follows your cursor showing magnified content. Press Win + + to launch quickly. Use Ctrl + Alt + L to switch to Lens mode while running. Magnifier offers three modes: Full screen (zooms everything), Lens (a movable window), … Read more

How to Run sfc and DISM Together for Maximum Repair Effect

Quick fix: Open Command Prompt (Admin). Run these in order: dism /online /cleanup-image /restorehealth (15-30 minutes), then sfc /scannow (5-15 minutes), then reboot. DISM repairs the Windows component store (system source) first, so SFC’s file replacement uses a healthy source. Running SFC before DISM may fail to find good copies. SFC (System File Checker) scans … Read more

How to Preserve File Timestamps During Backup With xcopy on Windows 11

Quick fix: Use xcopy with /k flag (keep attributes). Better: use robocopy instead, which preserves timestamps by default. Example: robocopy C:\Source D:\Backup /e /copy:DAT /dcopy:T. This copies all files including subdirectories, preserves Data, Attributes, Timestamps for files, and copies directory timestamps. Modern recommendation: robocopy over xcopy. Standard copy command and File Explorer drag-drop reset file … Read more