Why Bluetooth A2DP Drops to HFP When You Open Voice Recorder

Quick fix: Bluetooth headsets have two audio profiles: A2DP (high-quality, output only) and HFP (lower quality, two-way for voice). Voice Recorder enables capture, which forces HFP. Disable the Hands-Free Telephony driver in Device Manager to lock the headset to A2DP, accepting that mic input becomes unavailable. You’re listening to music via Bluetooth headset. High quality, … Read more

How to Disable Network Discovery on Public Profiles via PowerShell

Quick fix: Run Set-NetFirewallProfile -Profile Public -Enabled True; Get-NetFirewallRule -DisplayGroup “Network Discovery” | Where-Object Profile -like “*Public*” | Disable-NetFirewallRule in elevated PowerShell. Network discovery is now off on every Public profile network the PC connects to. You want public-network protection: when on coffee shop Wi-Fi, hotel networks, or any untrusted connection, your PC shouldn’t advertise … Read more

How to Recover Data From a Drive Marked Foreign in Disk Management

Quick fix: A drive marked “Foreign” in Disk Management is a dynamic disk migrated from another system. Right-click the disk header (not partition) → Import Foreign Disks. Windows reads the LDM (Logical Disk Manager) database and re-imports the partition structure. Data is recovered. You connected a SATA drive from another PC. Disk Management shows it … 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 Turn Off Edge Discover Pane on Domain-Joined Windows 11

Quick fix: Open Edge, click the Discover (Copilot) icon in the top-right, click Settings → Customize Discover, and toggle Show Discover off. On domain-joined PCs where the per-user toggle is greyed out, set the registry value HKLM\Software\Policies\Microsoft\Edge\HubsSidebarEnabled to 0 via Group Policy or Intune. The Edge Discover (formerly Sidebar, now Copilot) pane is the small … 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 Hibernation File to Reclaim 8 GB on Windows 11

Quick fix: Open an elevated Command Prompt and run powercfg /hibernate off. Windows immediately deletes C:\hiberfil.sys and reclaims the space — typically 40–75% of installed RAM, so 6–12 GB on a 16 GB system. The Hibernate option disappears from the power menu; Sleep still works. You’re short on space on the system drive and you … Read more

Why Store Apps Refuse to Update on a Hibernated Windows 11 PC

Quick fix: The Microsoft Store update service uses Windows Push Notification (WNS) connections that don’t survive Hibernate — after wake, WNS reconnects but the Store update scheduler doesn’t re-arm. Sign out and back in, or restart the Microsoft Store via Get-Process *WindowsStore* | Stop-Process -Force to kick the scheduler. You hibernated your laptop for a … Read more

How to Add a Specific Process to Defender Exclusions via PowerShell on Windows 11

Quick fix: Run Add-MpPreference -ExclusionProcess “C:\path\to\app.exe” in elevated PowerShell to exclude a specific executable from Defender Real-Time scanning. Confirm with Get-MpPreference | Select-Object -ExpandProperty ExclusionProcess. You have a build tool, a backup agent, or a developer-environment utility that triggers Defender scans on every file it writes — and that scan overhead is killing performance. Folder-level … Read more

How to Carve Out a 4 GB Recovery Partition on a Tight 128 GB SSD

Quick fix: Use diskpart to shrink C: by 4 GB, then create a new GPT partition with type de94bba4-06d1-4d40-a16a-bfd50179d6ac (Windows Recovery Environment), format as NTFS, and run reagentc /setreimage to register it. The new WinRE partition holds Reset This PC images plus the recovery environment. You bought a laptop with a 128 GB SSD. Windows … Read more