How to Move Microsoft Store App Data to Another Drive on Windows 11

Quick fix: Open Settings → Apps → Installed apps. Find the Microsoft Store app. Click the three-dot menu → Move. Pick the target drive from the dropdown. Click Move. Windows transfers app files to the new drive. Settings, user data, save files move automatically. Works only for Microsoft Store apps, not Win32 desktop installs. If … Read more

How to Retrieve OEM Product Key From a Pre-Installed Windows 11 PC

Quick fix: Open Command Prompt (Admin). Run: wmic path softwarelicensingservice get OA3xOriginalProductKey. The output is your OEM product key stored in BIOS/UEFI. Or use PowerShell: (Get-WmiObject -query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey. If empty: PC doesn’t have OEM key in firmware (manual installs and resale PCs may not). OEM PCs from Dell, HP, Lenovo, etc. ship … Read more

How to Pin a Specific Driver Version on Windows 11

Quick fix: Install the desired driver version. Then run in Command Prompt (Admin): wushowhide.diagcab (download from Microsoft) → pick the driver update from the list to hide it. Windows Update won’t offer that driver again. Alternative: Group Policy → Computer Configuration → Administrative Templates → Windows Components → Windows Update → Do not include drivers … Read more

How to Use Multiple Edge Profiles for Work and Personal Separation

Quick fix: Open Edge. Click your profile icon (top right). Click + Add profile. Pick “Add a personal profile” or “Add work profile.” Sign in with the work or personal Microsoft account. Each profile has its own bookmarks, history, passwords, extensions. Switch via the profile icon. Pin separate profiles to taskbar for one-click access. One … Read more

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