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

Fix Universal Print Showing Not Available Despite Intune Enrollment

Quick fix: Universal Print requires both an Intune-enrolled device and an active Universal Print license assigned to the signed-in user. Confirm the license in https://admin.microsoft.com, then run Get-Printer | Where-Object PortName -like “IPP*” to see if the Universal Print connector pulled the assignments down. Universal Print is Microsoft’s cloud print service for managed devices. It … Read more

Fix Touchpad Two-Finger Scroll Reversing After a Driver Update

Quick fix: Open Settings → Bluetooth & devices → Touchpad, expand Scroll & zoom, and change Scrolling direction to the option opposite of what’s currently selected. If the dropdown is missing entirely, the OEM driver overrode Windows Precision Touchpad — roll back the driver from Device Manager to restore the standard control. Your touchpad two-finger … Read more

How to Unblock Downloaded Files in Bulk With PowerShell on Windows 11

Quick fix: Run Get-ChildItem -Path C:\Downloads -Recurse | Unblock-File from an elevated PowerShell to remove the “downloaded from the Internet” flag (Zone.Identifier stream) on every file under a folder at once. This bypasses the “This file came from another computer” warning without disabling SmartScreen. Windows 11 marks every file downloaded by a browser, email client, … 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

Fix Slow Boot After Enabling Memory Integrity in Windows 11

Quick fix: Memory Integrity (Core Isolation) loads HVCI before drivers, adding 15–45 seconds to boot when an incompatible driver fails verification and Windows falls back. Find the offending driver in Event Viewer under Code Integrity, update or remove it, and boot time returns to normal. You toggled on Memory Integrity to harden the kernel, and … Read more

How to Reinstall a Pre-Installed Store App Without a Local Account

Quick fix: Use PowerShell’s Add-AppxPackage -Register against the package manifest in C:\Program Files\WindowsApps to reinstall a pre-provisioned Store app without needing to sign in to a Microsoft account. The app is restored from local files Microsoft already ships with Windows. Some Windows 11 PCs use a local account for everything — no Microsoft account, no … Read more