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 Pre-Fetch a Large App From Microsoft Store on Windows 11

Quick fix: Microsoft Store doesn’t officially support pre-fetching apps. To download a large app efficiently: ensure PC is on Wi-Fi (not metered). Open the Store → pick app → Get. Download starts. To pause and resume: Library → pending downloads. To download faster: ensure Delivery Optimization is on (Settings → Windows Update → Advanced → … Read more

How to Uninstall a Stubborn Microsoft Store App via PowerShell

Quick fix: Open PowerShell as Admin. Run: Get-AppxPackage *AppName* | Remove-AppxPackage. Replace *AppName* with the app’s package family name. For all users: add -AllUsers. For built-in apps that can’t uninstall via Settings: Get-AppxPackage -AllUsers *AppName* | Remove-AppxPackage -AllUsers. Some Microsoft Store apps refuse to uninstall via Settings → Apps. Common stubborn cases: corrupted apps, system-tied … Read more

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