How to Show a CapsLock On-Screen Indicator With PowerToys

Quick fix: Install Microsoft PowerToys from Microsoft Store. Open PowerToys → Keyboard Manager isn’t the right module; instead, look for Awake or write a custom one. Actually, the simplest: install CapsLock Indicator from the Microsoft Store, or use the legacy Caps Indicator third-party tool. PowerToys doesn’t have a built-in CapsLock indicator yet — but PowerToys … Read more

How to Safely Disable Hibernation on Windows 11 to Reclaim Storage

Quick fix: Open Command Prompt (Admin). Run: powercfg /hibernate off. The hiberfil.sys file (often 4-10GB+) is deleted. Hibernate is now disabled. You won’t see Hibernate in the Power menu. Sleep mode still works. To re-enable: powercfg /hibernate on. The hibernation file (hiberfil.sys) stores RAM contents on disk when you hibernate, so the PC can resume … Read more

How to Reset Edge Without Losing Bookmarks on Windows 11

Quick fix: Open Edge → edge://settings/reset. Click Restore settings to their default values. This resets startup pages, search engines, extensions to default but keeps your bookmarks, history, and saved passwords. For a deeper reset, sign out of sync first to avoid syncing your reset state back to other devices. Edge accumulating issues: slow startup, mystery … Read more

How to Check BitLocker Encryption Status From PowerShell on Windows 11

Quick fix: Open PowerShell (Admin). Run: Get-BitLockerVolume. Output shows all drives with their encryption status, percentage, and protection on/off. For one drive: Get-BitLockerVolume -MountPoint “C:”. For brief summary: manage-bde -status C:. BitLocker can be active, suspended, decrypting, or off. PowerShell’s Get-BitLockerVolume cmdlet shows encryption status at a glance. Useful for: confirming protection after enabling, checking … Read more

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