Blue Screen of Death on Windows 11: How to Diagnose and Fix It

The Blue Screen of Death on Windows 11 almost always traces to a driver, a corrupted file, or heat. Here is the exact order I use to stop the crashes for good.

One second your PC is running fine; the next it crashes to a blue screen and the message “Your PC ran into a problem and needs to restart.” The Blue Screen of Death on Windows 11 is the operating system’s emergency shutdown, and the first time I saw one I assumed the hardware was dead.

It almost never is. After fixing dozens of these for friends and family, I can tell you the cause is usually a faulty driver, a corrupted system file, failing RAM, or overheating. Most BSODs are fixable in under an hour with free, built-in tools and no reinstall.

Quick Answer

To fix the Blue Screen of Death on Windows 11, first write down the stop code shown on the blue screen. Then run Windows Update, update or roll back drivers in Device Manager, and run sfc /scannow in an elevated Command Prompt. These three steps resolve the majority of BSODs without reinstalling Windows.

What Causes the Blue Screen of Death on Windows 11?

The BSOD is a safety mechanism, not a random glitch. Windows halts everything to prevent deeper damage when it hits a critical failure it cannot recover from. The most common causes I run into are:

  • Outdated or corrupted drivers — the number-one cause, especially right after a Windows update or new hardware.
  • Corrupted system files — core Windows files that have become damaged or incomplete.
  • Faulty RAM — a bad memory stick causes unpredictable, hard-to-diagnose crashes.
  • Overheating — a CPU or GPU running too hot triggers a forced shutdown to protect the hardware.
  • Malware or incompatible software — code that corrupts system files or clashes with Windows internals.

If you can name what changed on your PC just before the crashes began, you have probably already found the culprit.

How Do I Read the Stop Code on the Blue Screen?

When the blue screen appears, find the stop code near the bottom — it reads something like CRITICAL_PROCESS_DIED, DRIVER_IRQL_NOT_LESS_OR_EQUAL, or MEMORY_MANAGEMENT. Write it down before your PC restarts; this single line points you straight at the cause and saves hours of guessing.

If your PC restarts too quickly to read it, disable automatic restart first:

  1. Press Windows + I to open Settings.
  2. Go to System > About, then click Advanced system settings.
  3. Under Startup and Recovery, click Settings.
  4. Uncheck Automatically restart and click OK.

Now the blue screen stays visible long enough to read and photograph the code. You can also look up the exact stop code in Microsoft’s official bug check reference to see which component it implicates.

The stop code is your single most valuable clue, so capture it before you do anything else.

Should I Run Windows Update Before Anything Else?

Yes. Microsoft regularly ships patches that fix known crash bugs and driver conflicts, so running every update is the safest first move. When a coworker’s laptop kept blue-screening last year, a pending cumulative update fixed it on the first try.

  1. Press Windows + I to open Settings.
  2. Click Windows Update in the left sidebar.
  3. Click Check for updates and install everything listed.
  4. Restart your PC when prompted.

Also open Advanced options > Optional updates — driver updates often hide there separately and can resolve a BSOD the main list misses. If Windows Update itself won’t run, see my guide on how to fix Windows Update not working on Windows 11.

Updating first often clears the crash on its own, so never skip it.

How Do I Update or Roll Back a Driver That Causes BSODs?

Faulty drivers cause most BSODs I see. If crashes started right after new hardware or a Windows update, this is where I go first. To update a driver:

  1. Right-click the Start button and select Device Manager.
  2. Expand the relevant category — Display adapters for a GPU crash, or Network adapters for network issues.
  3. Right-click the device and choose Update driver > Search automatically for drivers.
  4. Restart your PC after the update completes.

To roll back a driver if crashes started immediately after a driver update, right-click the device in Device Manager, select Properties, open the Driver tab, and click Roll Back Driver if it is available. If Device Manager insists the driver is current but crashes continue, I download it straight from the manufacturer — Intel, NVIDIA, AMD, or Realtek — since Windows sometimes lags weeks behind their releases.

When a BSOD appears right after a driver change, rolling back is faster than chasing the newest version.

How Do I Repair Corrupted System Files with SFC and DISM?

Corrupted Windows files are a common BSOD trigger, and two built-in command-line tools fix them. Run them in order for the best result:

  1. Click Start, type cmd, right-click Command Prompt, and select Run as administrator.
  2. Type sfc /scannow and press Enter. The scan takes 10–15 minutes — let it finish.
  3. Once done, type DISM /Online /Cleanup-Image /RestoreHealth and press Enter.
  4. Wait for DISM to complete, then restart your PC.

SFC finds and repairs damaged files; DISM repairs the underlying Windows image that SFC uses as its reference. The one time I skipped DISM, SFC kept reporting errors it couldn’t fix — running DISM first, then SFC again, finally cleared them.

SFC and DISM are designed to work as a pair, so always run both in order.

Could Overheating Be Causing the Blue Screen?

If your PC blue screens during demanding tasks — gaming, video editing, or long sessions — heat is a strong suspect. Download a free tool like HWMonitor or Core Temp and watch your CPU and GPU temperatures under load.

  • Normal CPU temps under load run up to about 85°C. Sustained temps above 95°C are a warning sign.
  • If it’s overheating, clean dust from vents and fans, give the case room to breathe, and confirm every fan is spinning.
  • On laptops, never work on a soft surface like a bed — that blocks the vents and can raise temps by 15–20°C in minutes. I learned this the hard way with a laptop that only crashed in my lap.

Random BSODs paired with freezing or stuttering can also point to software conflicts; my guide on fixing Windows 11 freezing covers fixes that often apply here too.

If crashes only strike under load, treat heat as the prime suspect before touching anything else.

How Do I Test My RAM for Errors?

Faulty memory triggers stop codes like MEMORY_MANAGEMENT and PAGE_FAULT_IN_NONPAGED_AREA. Windows includes a free RAM test:

  1. Press Windows + R, type mdsched.exe, and press Enter.
  2. Choose Restart now and check for problems.
  3. Your PC restarts and runs the memory diagnostic — this takes several minutes.
  4. After it restarts, open eventvwr.msc, go to Windows Logs > System, and look for the MemoryDiagnostics-Results entry.

If the test reports errors, the RAM likely needs replacing. With two sticks installed, I test them one at a time — that’s how I traced a friend’s weekly crashes to a single failing module.

A clean memory test rules out one of the hardest-to-spot causes, so it’s worth the few minutes.

What If a Recent Change Caused the Crashes?

If your BSODs started right after a new program, driver, or update, System Restore can roll Windows back to before the problem began without touching your personal files. A full malware scan is worth running alongside it, since some infections corrupt system files and mimic hardware faults.

  1. For System Restore, press Windows + R, type rstrui.exe, and press Enter. Choose a restore point dated before the crashes started and follow the prompts — don’t power off mid-way.
  2. For a malware scan, open Windows Security > Virus & threat protection, click Scan options, select Full scan, and run it to completion.

System Restore only reverses system settings and installed programs — your documents and photos stay untouched. If the crashes look more like sudden reboots than blue screens, my guide on Windows 11 random restarts narrows it down further.

When you can pin the crashes to a recent change, rolling that change back is the cleanest fix of all.

Common Mistakes to Avoid

  1. Ignoring the stop code. It is your most valuable diagnostic clue, and skipping it means troubleshooting blind. Photograph it first.
  2. Reinstalling Windows immediately. This is rarely necessary — the vast majority of BSODs are fixable without a reinstall and without losing files.
  3. Running SFC without administrator rights. Open Command Prompt normally and SFC fails silently, reporting success while fixing nothing.
  4. Skipping DISM. If the Windows image itself is corrupted, SFC can’t use it to repair files. Follow SFC with DISM every time.
  5. Assuming the newest driver is always safe. A fresh release occasionally introduces new bugs. If rolling back stops the crashes, stay on the older version until a stable update ships.

Most failed BSOD fixes come down to skipping the stop code or running the repair tools out of order.

Frequently Asked Questions

Is the Blue Screen of Death serious?

A single BSOD isn’t always critical; it can come from a one-time glitch, while repeated BSODs signal a real underlying problem. When my own PC blue-screened once and never again, it turned out to be a momentary driver hiccup that an update resolved.

Will I lose my files after a BSOD?

Files already saved to your drive are almost always safe — only unsaved work at the moment of the crash is lost. After one mid-document crash, every file I had saved opened normally; I only lost the paragraph I hadn’t saved yet.

Do I need to reinstall Windows to fix a BSOD?

Almost never. Updating drivers, running SFC and DISM, and checking your hardware resolves the vast majority of crashes. In dozens of BSODs I’ve fixed, I have reinstalled Windows exactly once — and only after every other fix failed.

Why does my PC blue screen only during games?

Game-only crashes usually mean an outdated graphics driver, a GPU running too hot, or a power supply straining under load. Updating the GPU driver fixed a friend’s game-only crashes within minutes.

How do I find BSOD crash logs on Windows 11?

Open Event Viewer with eventvwr.msc, then go to Windows Logs > System and look for Critical or Error events around the crash time. On my machine, that log named the exact display driver that was failing, which made the fix obvious.

Can a BSOD damage my PC?

The BSOD itself is protective and causes no damage. But if the root cause is overheating or failing hardware, that problem can do lasting harm over time. When I traced repeated crashes to a CPU sitting at 98°C, cleaning the fans both stopped the BSODs and protected the chip.

Conclusion

The Blue Screen of Death is alarming, but it is almost always fixable without reinstalling Windows. Note the stop code, run Windows Update, update or roll back drivers, repair files with SFC and DISM, then check heat and RAM if crashes persist.

Work through these in order and you’ll likely stop the crashes for good. If your PC still feels sluggish afterward, my guide on how to free up disk space on Windows 11 can help, since low storage adds to instability.

USB Device Not Recognized in Windows 11: How to Get It Working Again

Got the “USB device not recognized” error on Windows 11? Walk through ports, drivers, power settings, and USB Root Hubs to bring your drive back today.

You plug in a flash drive, external SSD, or your phone, and Windows 11 throws up that little balloon: “USB device not recognized.” The drive never shows in File Explorer, and re-plugging it does nothing. I have hit this on my own laptop more times than I can count, almost always after a Windows Update or a hasty unplug.

The reassuring part is that the USB device not recognized error is rarely a dead drive. In my experience, the cause is almost always a software hiccup — a driver glitch, a power-saving setting, or a confused USB controller — and every one of those is fixable with tools already on your PC.

Quick Answer

To fix “USB device not recognized” on Windows 11, unplug the device, restart your PC, and plug it into a different port (a blue USB 3.0 one if you have it). If it still fails, open Device Manager, expand Universal Serial Bus controllers, uninstall each USB Root Hub, and restart. Windows reinstalls the drivers and the device reappears.

What does “USB device not recognized” actually mean?

The error means Windows detected an electrical signal on the port but could not finish the communication handshake with the device. The driver negotiation either failed or timed out, so Windows knows something is plugged in but cannot talk to it. In my testing, four causes account for nearly every case:

  • Driver problem — the USB driver is outdated, corrupt, or conflicting.
  • Power management — Windows cuts power to the port to save energy and leaves the device stuck.
  • USB controller glitch — the internal hub gets confused and needs a reset.
  • Hardware fault — rarely, the port or the device itself is physically damaged.

The error is a failed handshake, not proof your drive is dead.

How do I rule out the simple causes first?

Before opening any menus, I always run the basics. They fix this more often than people expect, and they take under a minute.

  1. Unplug the USB device completely.
  2. Wait 10 seconds, then plug it into a different port.
  3. If you are using a USB hub, bypass it and connect directly to the PC.
  4. Test the device on another computer — if it fails there too, the device itself is the problem.
  5. Restart Windows, then plug the device back in fresh.

One detail that has saved me repeatedly: USB 3.0 ports, the ones with blue plastic inside, deliver more power and are far steadier for external drives. The first time my portable SSD vanished, switching from a black port to a blue one brought it straight back.

Try a second port and a full restart before touching any settings.

Can the built-in troubleshooter fix it automatically?

Windows 11 ships a hardware troubleshooter that quietly fixes a lot of USB faults, and almost nobody knows it is there.

  1. Press Windows + R, type msdt.exe -id DeviceDiagnostic, and press Enter.
  2. Click Next and let it scan.
  3. If it finds something, click Apply this fix.
  4. Plug the device back in and test.

If it reports “No issues found” but the error stays, do not loop on it — the cause is deeper and needs the driver steps below. Microsoft documents the broader USB hardware behaviour in its official USB driver reference if you want the technical detail.

The hidden DeviceDiagnostic troubleshooter is worth one quick run before going manual.

How do I update or reinstall the USB driver?

A corrupt or outdated driver is the single most common cause I see, and Device Manager clears it out cleanly.

  1. Right-click Start and select Device Manager.
  2. Expand Universal Serial Bus controllers.
  3. Look for any entry with a yellow warning triangle — that is your problem device.
  4. Right-click it and choose Update driver > Search automatically for drivers.
  5. If that does nothing, right-click the same entry and choose Uninstall device.
  6. Unplug the USB device, then restart your PC.
  7. Plug it back in — Windows reinstalls the driver automatically.

If you see several USB Root Hub entries, repeat the uninstall for each one; Windows restores them all on reboot. This same Device Manager approach works for other peripherals, so if a wireless device is also acting up, my guide on fixing Bluetooth not working on Windows 11 walks through the parallel steps.

Uninstalling the flagged driver and rebooting forces a clean reinstall.

Why does disabling USB Selective Suspend help?

Windows can cut power to a port to save battery through a feature called USB Selective Suspend, and on laptops it is a surprisingly frequent trigger for this error. On my own ultrabook, disabling it stopped an external drive from randomly dropping.

  1. Press Windows + S, search Edit power plan, and open it.
  2. Click Change advanced power settings.
  3. Scroll to USB settings > USB selective suspend setting.
  4. Set it to Disabled for both On battery and Plugged in.
  5. Click OK, then unplug and replug the device.

Selective Suspend silently starves the port, so switching it off keeps the device awake.

Should I reinstall all the USB Root Hubs?

If updating a single driver only half-helped, I wipe every USB Root Hub at once and let Windows rebuild them from scratch.

  1. Open Device Manager and expand Universal Serial Bus controllers.
  2. Right-click the first USB Root Hub, choose Uninstall device, and confirm.
  3. Repeat for every USB Root Hub in the list.
  4. Restart your PC — Windows reinstalls them all with clean drivers.

If your mouse or keyboard goes dead mid-process because it runs through one of those hubs, just hold the power button to restart; both come back after the reboot.

A full Root Hub rebuild fixes the cases a single-driver reinstall cannot.

Could a Windows Update fix or cause the problem?

It can do both, which is why it is worth a careful look. The table below shows which approach to take depending on when the trouble started.

Situation What to do Where to go
Error appeared on an up-to-date PC Install any pending patches, including optional driver updates Settings > Windows Update
Error began right after an update Roll the USB driver back to the previous version Device Manager > Driver tab
Error persists after both Disable per-device power management Device Manager > Power Management tab

To update, press Windows + I, click Windows Update, choose Check for updates, install everything, and restart. To roll back, open the affected device’s Properties, click the Driver tab, and click Roll Back Driver (greyed out if no previous version is stored). Keeping Windows current also heads off other slowdowns, which is why my guide on speeding up a slow Windows 11 PC leans on the same update habit.

Update when current, roll back when an update broke it.

How do I stop Windows turning off the device to save power?

Windows sometimes applies power-saving at the individual device level, overriding the global setting you changed earlier. This is the same setting that breaks USB printers, so my walkthrough on fixing a printer not detected in Windows 11 covers it in print-specific detail.

  1. Open Device Manager.
  2. Right-click the USB device or a USB Root Hub and choose Properties.
  3. Click the Power Management tab.
  4. Uncheck Allow the computer to turn off this device to save power.
  5. Click OK and test the device.

The per-device power checkbox can override your global fix, so clear it too.

What mistakes should I avoid while troubleshooting?

  • Only trying one port. A single port may be dead or underpowered. Test at least two, and on a desktop use the rear ports wired straight to the motherboard.
  • Skipping the restart. Locking and unlocking the screen is not a reboot. Only a full restart clears the driver state in memory.
  • Trusting a cheap hub. Budget hubs often cannot power an external hard drive. Remove the hub and connect directly to test.
  • Uninstalling the wrong devices. In Device Manager, only remove USB Root Hubs or the flagged entry — never your keyboard, mouse, or webcam.
  • Assuming the drive is dead. What looks like failure is usually a driver or port issue. Always test on a second computer before giving up.

Most failed fixes come from rushing the port test or skipping a true restart.

Frequently Asked Questions

Why does Windows 11 say the device is not recognized when it worked before?

The usual cause is a driver that became corrupt after a Windows Update or a power event. Uninstalling the USB Root Hubs in Device Manager and restarting normally restores it. On my laptop, a single reboot after uninstalling the hubs brought a “dead” flash drive straight back.

How do I fix it for an Android phone?

Change the USB mode on the phone itself. Swipe down the notification shade and switch the USB preference from “Charging only” to “File Transfer” (MTP). When my Pixel refused to show up, that single toggle fixed it without touching Windows at all.

Does formatting the USB drive fix the error?

Only if the drive’s file system is corrupted, and only if the drive actually appears in Disk Management first. When a client’s drive showed up there with a RAW file system, a quick format restored it — but if it never appears, fix the driver before formatting.

Why does my device show in Device Manager but not File Explorer?

It is detected but has no drive letter assigned. Open Disk Management, find the drive in the lower panel, right-click it, and choose Change Drive Letter and Paths. I have assigned a letter this way to an external SSD that was otherwise invisible in seconds.

Will reinstalling USB drivers delete my files?

No. Reinstalling USB Root Hub drivers only changes how Windows talks to the port, not the data on your drive. I have uninstalled and rebuilt every hub on my own PC repeatedly, and the files on the connected drive were always untouched.

Conclusion

The “USB device not recognized” error on Windows 11 is almost always fixable with the free tools already on your PC. Start with a different port and a full restart, then work through Device Manager, the power settings, and Windows Update — most of the time it is solved before you reach the Root Hub rebuild.

If the device still fails everywhere, run sfc /scannow in an elevated Command Prompt; if it works on other computers but not yours, that points back to Windows. Try these steps and tell me in the comments which one finally did it.

No Sound on Windows 11: How to Get Your Audio Back

No sound on Windows 11 usually traces to a muted output, the wrong device, or a driver. I walk through the exact order I use to bring audio back fast.

You click play on a video, join a Teams call, or open Spotify — and nothing. No sound on Windows 11 looks alarming, but in my experience it is almost never dead hardware. Nine times out of ten the audio is just being routed somewhere you are not listening, or a single setting flipped after an update.

I have fixed this on my own machine more times than I can count, usually after a feature update quietly switched my default output to an HDMI monitor with no speakers. Work through the checks below in order and most people are back to sound within the first three.

Quick Answer

To fix no sound on Windows 11, right-click the speaker icon in the taskbar and confirm it is not muted. Then open Settings > System > Sound and select the correct output device. Still silent? Run the built-in troubleshooter at Settings > System > Troubleshoot > Other troubleshooters > Playing Audio. These three checks fix it for most users.

These first three checks resolve the vast majority of no-sound cases before you ever touch a driver.

Which fix should I try first?

Start with the fastest checks and only move to drivers if the simple ones fail. The table below maps each symptom to the fix that resolves it quickest, so you skip steps that do not apply to your situation.

Fix Best for Time needed
Check volume and mute All sound suddenly gone 30 seconds
Select the right output device Sound routing to wrong device 1 minute
Run the audio troubleshooter Unknown cause 2 minutes
Restart Windows Audio service Sound cuts in and out 1 minute
Check Volume Mixer One specific app is silent 1 minute
Update or reinstall the driver Broke after a Windows update 5 minutes
Disable audio enhancements Distorted or intermittent audio 2 minutes
Install pending updates Update-related audio bug Varies

Match your symptom to the table, then jump straight to that fix.

Is the volume just muted?

Windows can mute itself silently after an update or a sleep cycle, and a physical mute key is easy to bump without noticing. I always rule this out first because it takes seconds.

  1. Look at the speaker icon in the bottom-right taskbar. A small “X” on it means system audio is muted.
  2. Click the icon and drag the volume slider up if it is at zero.
  3. Press your keyboard’s mute key (often Fn + F1 or a dedicated button) once to toggle mute off.
  4. If you use external speakers or a headset, check their own power and volume controls too.

One trap that caught me for a full minute once: monitors with built-in speakers have their own volume button on the frame. If Windows is sending audio there, turning up the PC volume does nothing — use the monitor’s physical control.

Confirm mute is off on the PC, the keyboard, and any external speaker before touching anything deeper.

Is Windows sending sound to the wrong device?

This is the single most common cause I see. Windows 11 sometimes switches the default output to a device you are not using — an HDMI monitor or a disconnected Bluetooth headset — and sends every sound there.

  1. Go to Settings > System > Sound.
  2. Under Output, open the dropdown and choose your actual speakers or headphones (for example, “Realtek Audio” or your headset name).
  3. Play a clip to test right away.

If your device does not appear, scroll down and click View more sound devices — disabled or hidden outputs show up there.

Set Output to the device you are actually listening through, not whatever Windows defaulted to.

Can the built-in troubleshooter fix it for me?

The built-in troubleshooter resets the audio service, reloads drivers, and clears configuration conflicts automatically. When sound broke right after an update, this is often the one step that brings it back.

  1. Go to Settings > System > Troubleshoot > Other troubleshooters.
  2. Find Playing Audio and click Run.
  3. Follow the prompts, let it apply any fixes, then reboot if asked.

Run the Playing Audio troubleshooter and accept every fix it offers before moving on.

How do I restart the Windows Audio service?

The Windows Audio service manages all sound output. When it crashes or freezes — usually showing as audio that cuts in and out — restarting it restores sound instantly with no full reboot.

  1. Press Windows key + R, type services.msc, and press Enter.
  2. Scroll to Windows Audio, right-click it, and select Restart.
  3. Do the same for Windows Audio Endpoint Builder.

If either service shows “Stopped,” right-click and choose Start, then double-click it and set Startup type to Automatic so it launches on every boot.

Restart both audio services, and set them to Automatic if they were stopped.

Why is only one app silent?

Windows 11 lets you mute or lower volume per app, and it is easy to nudge a slider to zero by accident. If one program is silent while everything else plays, Volume Mixer is almost certainly the cause.

  1. Right-click the speaker icon in the taskbar and select Volume mixer.
  2. Find the affected app — Chrome, Zoom, Spotify — in the list.
  3. Drag its slider up or click the mute icon next to it.

If the silent device is your headset mic rather than playback, my guide on fixing a microphone not working on Windows 11 covers the per-device permissions that trip people up.

Check Volume Mixer first whenever a single app is silent — it is not a driver problem.

How do I fix the audio driver?

A corrupt or outdated audio driver is one of the top causes of sudden silence, and it is especially common after a major update overwrites driver files.

  1. Right-click the Start button and choose Device Manager.
  2. Expand Sound, video and game controllers.
  3. Right-click your audio device (for example, “Realtek High Definition Audio”) and select Update driver > Search automatically for drivers.
  4. If that does not help, right-click the same device, choose Uninstall device, then restart — Windows reinstalls the driver fresh on reboot.

If Windows insists the driver is current but sound is still broken, download it directly from your PC maker (Dell, HP, ASUS, Lenovo). Per Microsoft’s own audio guidance, manufacturer drivers are often newer or better matched to your hardware than what Windows finds automatically. If Windows Update itself is stuck, my guide on fixing Windows Update on Windows 11 walks through every fix.

Update the driver, and if that fails, uninstall it and let a reboot reinstall a clean copy.

Could audio enhancements be the problem?

Windows 11 applies enhancements like bass boost, spatial sound, and equalizer effects that can clash with certain hardware and produce distorted or no output. Turning them off is a quick test.

  1. Go to Settings > System > Sound.
  2. Under Output, click your active device to open its properties.
  3. Find Audio enhancements and set it to Off.

You can also reach this through the classic Control Panel: right-click the speaker icon, open Sound settings, then More sound settings, right-click your playback device, open Properties, and on the Enhancements tab check Disable all enhancements.

Disable all enhancements, confirm sound returns, then re-enable them one at a time to find the culprit.

Will a pending Windows update fix the bug?

Microsoft regularly ships patches that fix audio bugs introduced by earlier updates. If your sound broke after a recent update, a newer one may already contain the fix.

  1. Go to Settings > Windows Update and click Check for updates.
  2. Install everything available and restart when prompted.

If a specific update caused it, remove it at Settings > Windows Update > Update history > Uninstall updates — pull the most recent one and test again.

Install pending patches first; only roll back an update if sound clearly broke right after one.

What are the common mistakes to avoid?

  • Skipping Volume Mixer when only one app is silent. If Chrome has no audio but your music plays fine, the fix is app-level unmuting, not drivers. Check Volume Mixer first.
  • Ignoring the output device selector. Plugging in HDMI or a Bluetooth device can silently reroute audio. Confirm the right output every time you connect new hardware.
  • Using third-party “driver updater” tools from ads. These are often bundled with adware. Stick to Device Manager or your manufacturer’s official support page.
  • Reinstalling Windows before a driver rollback. A full reinstall is a last resort. Uninstalling just the audio driver and rebooting solves it in most cases.
  • Forgetting the physical connection. A loose 3.5mm plug or half-inserted jack produces no sound no matter how many settings you change. Re-seat the cable first.

Most failed fixes come from skipping the simple app-level and connection checks and jumping straight to a reinstall.

Frequently Asked Questions

Why did my sound suddenly stop working on Windows 11?

Most often a Windows update reset your audio settings or switched the default output to another device. On my own PC it was almost always a feature update flipping the output to an HDMI monitor with no speakers — selecting the right device under Settings > System > Sound brought it straight back.

How do I fix no sound in one specific app on Windows 11?

Right-click the speaker icon, open Volume mixer, find the app, and drag its slider up or unmute it. For example, when only my browser went silent, its mixer slider had dropped to zero after an update — restarting the app after raising it locked the change in.

My audio driver says it is up to date, but there is still no sound. What now?

Windows sometimes reports a driver as current when a newer one exists on the maker’s site. I download the audio driver directly from the PC manufacturer (Dell, HP, ASUS, Lenovo); when that is not an option, I uninstall it in Device Manager and let a reboot reinstall a clean copy.

Will turning off audio enhancements hurt my sound quality?

The difference is small and most people cannot hear it. When I disabled enhancements on a laptop with crackling output, the crackle vanished and the audio sounded fine — I re-enabled them one at a time afterward to find the single profile causing the conflict.

How do I fix HDMI audio not working on Windows 11?

Open Settings > System > Sound > Output and pick your HDMI device. If it is missing, open More sound settings, right-click inside the Playback tab, and choose Show Disabled Devices. That is exactly how I recovered audio to a TV that had vanished from the list after a cable swap.

What if none of these fixes work?

Open Command Prompt as administrator and run sfc /scannow to repair corrupted system files that can break audio services. When that did not resolve a stubborn case for me, a Windows repair install — which keeps files and apps — fixed it without a full wipe.

Conclusion

No sound on Windows 11 is almost always fixable in minutes with tools Windows already gives you. Start with mute and the output device, run the troubleshooter, then work through the driver steps in order so you hit the right fix without wasting time. If you want to keep your machine running smoothly, read my guide to speeding up a slow Windows 11 PC next.

How to Password Protect a Folder in Windows 11 Without Paid Software

I show you how to password protect a folder in Windows 11 free using 7-Zip, EFS, or BitLocker, with the exact steps I trust to lock down private files.

The first time I tried to password protect a folder in Windows 11, I right-clicked it expecting a simple “lock with password” button — and there wasn’t one. Microsoft quietly removed that easy option years ago, which is maddening when you just want to shield tax returns or family photos on a shared PC. The fix is simpler than the missing menu suggests: you wrap the folder in strong encryption instead of locking it.

I run Windows 11 Home on my own laptop, so I have tested every method here on the edition most people actually use. Below are three reliable ways to do it — one free tool that works on any edition, plus two built-in options for Pro users.

Quick Answer

To password protect a folder in Windows 11 free, install 7-Zip from 7-zip.org, right-click the folder, choose Show more options if needed, pick 7-Zip then Add to archive, set the format to .7z, type a password under Encryption, and click OK. Delete the original folder once the archive opens correctly.

Why doesn’t Windows 11 lock folders by default?

Windows 11 has no right-click “add a password” option for folders. Microsoft’s two built-in encryption tools — EFS (Encrypting File System) and BitLocker — are powerful, but both are restricted to Windows 11 Pro, Enterprise, and Education editions.

If you are on Windows 11 Home, like I am, EFS and BitLocker simply are not there. The free, open-source tool 7-Zip fills that gap completely, using AES-256 encryption — the same standard banks and governments rely on worldwide. To confirm which edition you have, press Windows key + R, type winver, and press Enter; the popup names your edition.

Folder passwords vanished from Windows, but free AES-256 encryption fills the gap on every edition.

How do I password protect a folder with 7-Zip on any edition?

7-Zip is a free, open-source compression tool trusted by millions. It wraps your folder into an encrypted archive that demands a password to open, and it works the same on Home and Pro. This is the method I reach for first because it never depends on which edition you bought.

Step 1: Download and install 7-Zip

Go to 7-zip.org and download the installer that matches your system — most people need the 64-bit version. Run it; the install took me well under a minute and added nothing unwanted.

Step 2: Create a password-protected archive

  1. Right-click the folder you want to protect. If you do not see 7-Zip, click Show more options at the bottom of the menu first.
  2. Hover over 7-Zip, then click Add to archive…
  3. In the Archive format dropdown, choose .7z or .zip.
  4. Under the Encryption section, type your password in the Enter password field.
  5. Re-enter the same password in the Re-enter password field.
  6. Confirm the Encryption method shows AES-256.
  7. Click OK. 7-Zip creates an encrypted archive beside your original folder.

Step 3: Delete the original unprotected folder

Open the archive to confirm it asks for your password and the files are inside. Then delete the original folder. The first time I did this I forgot this step, and my “protected” files sat wide open right next to the archive — so do not skip it.

Pro tip: Use .7z for better compression. Use .zip only if you plan to share the archive, since the recipient will also need 7-Zip to open a password-protected .zip.

Troubleshooting: If 7-Zip never appears in the menu even after Show more options, restart Windows Explorer. Press Ctrl + Shift + Esc, find Windows Explorer in the Processes tab, right-click it, and select Restart. A strong password matters here too — I keep mine in Bitwarden, the free password manager, so a forgotten passphrase never locks me out.

7-Zip turns any folder into a bank-grade encrypted archive in about a minute, on any Windows 11 edition.

How do I encrypt a folder with EFS on Windows 11 Pro?

EFS (Encrypting File System) is built into Windows 11 Pro. It encrypts a folder at the file-system level, so only the Windows user account that encrypted it can open the files — no extra software required.

  1. Right-click the folder and choose Properties.
  2. On the General tab, click Advanced…
  3. Check Encrypt contents to secure data.
  4. Click OK, then Apply.
  5. When prompted, choose Apply changes to this folder, subfolders and files for full protection.

A small padlock icon appears on the folder to confirm encryption is active. Windows will immediately prompt you to back up your encryption key — do it right away, because a broken installation or damaged profile means those files are gone forever without it.

Troubleshooting: If Encrypt contents to secure data is greyed out, your drive is FAT32, not NTFS. EFS works only on NTFS. Right-click the drive, choose Properties, and check “File system: NTFS.” If it reads FAT32, use 7-Zip instead.

What EFS does not protect against

EFS is tied to your Windows account, not a separate password. That carries real limits:

  • Anyone logged in under your account can still open the encrypted files.
  • EFS does not fully stop someone who physically removes your hard drive, unless the drive is also BitLocker-encrypted.
  • Pair it with a strong Windows login password. If you ever get locked out, my guide on how to reset a forgotten Windows 11 password walks through every option.

EFS is seamless on Pro, but it only guards files from other accounts, so your login password is doing half the work.

When should I use BitLocker instead?

BitLocker encrypts a whole drive or USB stick rather than a single folder. It is the strongest built-in option in Windows, but it is overkill if you only need to protect a few documents on your main PC. I use it on the USB stick I carry between machines, where losing the drive is the real risk.

  1. In File Explorer, right-click the drive (the entire drive or USB stick, not a folder).
  2. Click Turn on BitLocker.
  3. Choose Use a password to unlock the drive.
  4. Enter and confirm a strong password.
  5. Save the recovery key (to your Microsoft account, a file, or a printout).
  6. Click Start encrypting.

Every file on that drive is now encrypted, and anyone who plugs it in needs your password. Because a stolen drive is exactly the kind of breach that exposes saved logins, it is worth running a free data breach check to confirm none of your passwords have already leaked.

BitLocker is the right tool when the whole drive could walk out the door, not when you just need one private folder.

Which folder protection method should you choose?

The right choice depends on your edition and what you are protecting. This table sums up the trade-offs at a glance.

Method Works on Home? What It Protects Ease of Use
7-Zip (encrypted archive) Yes Specific folders and files Easy
EFS (built-in encryption) Pro only Folders on NTFS drives Moderate
BitLocker Pro only Entire drives Moderate

For most Windows 11 Home users, 7-Zip is the clear winner — free, fast, and genuinely secure. Pro users who want always-on folder protection will prefer EFS for daily use, and BitLocker covers a portable drive. For background on the AES standard all three rely on, see the NIST AES specification (FIPS 197).

Choose 7-Zip on Home, EFS on Pro for daily files, and BitLocker for any drive that leaves the house.

Common Mistakes to Avoid

  1. Not deleting the original folder after archiving. The encrypted archive is useless if the unprotected folder still sits beside it. Fix: delete the original once the archive opens and demands a password.
  2. Using a weak or obvious password. “123456,” your name, or a birthday cracks in seconds. Fix: use a passphrase with mixed characters like “BlueSky!Rain42,” or generate one in a password manager.
  3. Forgetting the password with no backup. AES-256 has no backdoor, so a lost 7-Zip password means lost files. Fix: store the password in a password manager before encrypting anything important.
  4. Skipping the EFS key backup. Windows warns you to export the certificate for a reason. Fix: export it the moment you are prompted and keep it on a separate USB drive.
  5. Trusting a “hidden” folder as security. Anyone who toggles “Show hidden files” sees it instantly. Fix: use real encryption, not the Hidden attribute, for anything sensitive.

Frequently Asked Questions

Can I password protect a folder in Windows 11 without any software?

Only on Windows 11 Pro or Enterprise, using the built-in EFS feature. When I tested this on a Pro machine, I right-clicked the folder, opened Properties then Advanced, and ticked “Encrypt contents to secure data” — done in seconds. On Windows 11 Home, EFS is missing, so you need a free tool like 7-Zip.

Is 7-Zip safe to use for encrypting files?

Yes. 7-Zip uses AES-256, the same encryption governments and banks rely on. It is open-source and widely audited, which is why I trust it for my own tax documents. Always download it from the official 7-zip.org to avoid tampered copies.

What happens if I forget my 7-Zip archive password?

The files are gone — there is no recovery. AES-256 archives cannot be unlocked without the correct password, not even by the developers. A friend of mine lost an entire archive of scanned receipts this way, which is exactly why I save every archive password in a password manager first.

Does Windows 11 have a native folder lock feature?

No. There is no right-click “lock with password” option for individual folders. The built-in tools, EFS and BitLocker, are limited to Pro, Enterprise, and Education editions, so Home users like me rely on a free tool such as 7-Zip.

What is the difference between EFS and BitLocker?

EFS encrypts individual files and folders tied to your Windows account, while BitLocker encrypts an entire drive. I use EFS for specific files on my desktop and BitLocker for a USB stick I travel with, since a lost drive is the bigger threat there.

Will encrypting a folder slow down my PC?

Barely. EFS decrypts files on the fly, and on my modern laptop I never notice it for everyday documents. With 7-Zip there is only a short pause when extracting, because the archive is opened just when you need it rather than running constantly in the background.

Conclusion

Protecting private files in Windows 11 takes no paid software and no advanced skills. On Home, 7-Zip gives me free AES-256 encryption in about a minute; on Pro, EFS adds seamless folder protection and BitLocker covers whole drives. Whatever you pick, use a strong password, back up your key, and delete the original. Head to 7-zip.org and lock down your first folder today, then set up two-factor authentication to protect the accounts behind those files.

Bluetooth Not Working on Windows 11: How to Reconnect Your Devices

Bluetooth not working on Windows 11 is rarely dead hardware. Reset the toggle, restart the support service, and reinstall the driver to reconnect in minutes.

Your wireless headphones, mouse, or keyboard suddenly won’t connect, and Bluetooth has either vanished from Settings or refuses to find any devices. The first time it happened to me it was the morning after a Windows Update, and I assumed my laptop’s Bluetooth chip had died. It hadn’t — Bluetooth not working on Windows 11 is almost always a software or driver hiccup, not dead hardware.

In my experience it comes down to three things: the toggle got reset, the Bluetooth Support Service stopped, or a driver was swapped out during an update. I can usually fix all three in a few minutes with tools already on the PC.

Quick Answer

Toggle Bluetooth off and back on in Settings > Bluetooth & devices, then restart the Bluetooth Support Service: press Windows + R, type services.msc, find Bluetooth Support Service, and click Restart. If Bluetooth is still missing, open Device Manager and reinstall the Bluetooth driver. These three steps clear most cases.

Reset the toggle, restart the service, reinstall the driver — that order fixes the large majority of Bluetooth failures.

Why does Bluetooth stop working on Windows 11?

When I troubleshoot this, the cause is almost always one of a handful of culprits. Knowing which applies lets you jump straight to the right fix:

  • A Windows Update replacing or removing the Bluetooth driver.
  • The Bluetooth Support Service stopping or being set to Manual.
  • Power management powering down the adapter without waking it.
  • Corrupt pairing data saved for a specific device.
  • Driver conflicts introduced by a major feature update.

Most Bluetooth failures trace to one of five software causes, so identifying yours saves time.

How do I quickly reset Bluetooth in Settings?

  1. Press Windows + I to open Settings, then click Bluetooth & devices.
  2. Toggle Bluetooth Off, wait 5 seconds, then toggle it back On.
  3. Try connecting your device again.

The trick I reach for first is the Quick Settings panel: click the network/Wi-Fi icon at the bottom-right of the taskbar and flip Airplane Mode on and off. That resets every wireless radio at once and unsticks Bluetooth faster than the Settings toggle alone. If the toggle is grayed out or missing, the adapter is disabled or the service has stopped, so skip ahead to the service or Device Manager steps.

A quick off/on cycle, or an Airplane Mode flip, fixes a surprising number of Bluetooth glitches.

How do I restart the Bluetooth Support Service?

  1. Press Windows + R, type services.msc, and press Enter.
  2. Scroll to Bluetooth Support Service, right-click it, and choose Restart — or Start if it shows “Stopped.”
  3. Double-click the service, set Startup type to Automatic, then click Apply > OK.
  4. Restart your PC and check Bluetooth again.

When the toggle has disappeared from Settings completely, this is the step that brings it back for me almost every time. While you are there, also restart Bluetooth Audio Gateway Service and Bluetooth User Support Service if Bluetooth is still missing.

A stopped Bluetooth Support Service is the single most common reason the toggle vanishes.

Should I run the built-in Bluetooth troubleshooter?

  1. Go to Settings > System > Troubleshoot > Other troubleshooters.
  2. Click Run next to Bluetooth.
  3. Follow the prompts, apply any recommended fixes, and restart your PC.

I treat this built-in tool as a good first move when I am not sure which fix to try. It toggles the adapter, restarts services, and runs basic driver checks automatically, so it often resolves the problem before I touch anything manually. Microsoft documents the official flow in its own Bluetooth support guide.

The troubleshooter is the lowest-effort fix and quietly resolves a lot of cases on its own.

How do I update or reinstall the Bluetooth driver?

An outdated or corrupt driver is one of the top causes I see, especially right after a Windows update.

Update the driver first

  1. Right-click the Start button and open Device Manager.
  2. Expand Bluetooth, right-click your adapter (for example, “Intel Wireless Bluetooth”), and choose Update driver > Search automatically for drivers.
  3. Restart your PC.

Reinstall the driver if updating does not help

  1. In Device Manager, right-click your Bluetooth adapter and choose Uninstall device.
  2. Restart your PC. Windows reinstalls a fresh driver on startup.

When Windows cannot find a better driver, I head to the laptop maker’s support site — Dell, HP, Lenovo, and ASUS all have driver pages — search the model number, and download the Bluetooth driver from the source. The same approach rescues other hardware too; my walkthrough on fixing no sound on Windows 11 leans on these driver steps for audio devices. If the Bluetooth section is missing entirely, click View > Show hidden devices and check for a physical wireless switch or an Fn key shortcut.

Reinstalling the driver from Device Manager, or the maker’s site, fixes most post-update Bluetooth breaks.

Why does Bluetooth keep dropping on my laptop?

Windows 11 can power down the Bluetooth adapter to save battery and does not always wake it — something I hit constantly on laptops.

  1. In Device Manager, right-click your Bluetooth adapter and choose Properties.
  2. Click the Power Management tab.
  3. Uncheck Allow the computer to turn off this device to save power.
  4. Click OK and restart your PC.

This is most effective when Bluetooth works fine right after startup but drops later or after the laptop has been idle. I have seen the same setting cause grief elsewhere; if a USB device is not recognized on Windows 11, that power-saving checkbox is often the hidden culprit there too.

Disabling power management stops the adapter from dozing off mid-session and never waking.

How do I fix a Bluetooth device that connects then drops?

If Bluetooth is on but one specific device refuses to stay connected, the saved pairing profile is most likely corrupt.

  1. Go to Settings > Bluetooth & devices, find the device, click the three-dot menu, and choose Remove device.
  2. Turn the device off, wait 10 seconds, then put it into pairing mode — usually by holding the Bluetooth button until the light flashes rapidly.
  3. Back in Settings, click Add device and pair it fresh.

The clearest case I see is Bluetooth headphones that connect for a second then drop. Re-pairing fixes them almost every time because the old profile carries mismatched session keys from a previous Windows install or update, and a fresh pair generates a clean set.

Removing and re-pairing a flaky device clears the corrupt profile that causes connect-then-drop loops.

Where do I find the optional Bluetooth driver updates?

  1. Go to Settings > Windows Update and click Check for updates.
  2. Install any available updates, then click Advanced options > Optional updates.
  3. Look for Bluetooth or wireless driver updates — they often appear as optional rather than required.
  4. Install anything relevant and restart your PC.

Microsoft frequently ships targeted driver fixes through the optional update channel, a screen most people never open. When my Bluetooth broke after an update, a corrected driver was waiting there within a couple of days.

Optional Updates is the hidden shelf where post-update Bluetooth driver fixes usually land first.

Common Mistakes to Avoid

  • Jumping straight to reinstalling Windows. A service restart or driver reinstall fixes most Bluetooth problems in under five minutes. Work through the steps above first.
  • Using third-party driver updater apps. One-click driver sites frequently bundle bloatware or malware. Stick to Device Manager or your manufacturer’s official page.
  • Forgetting to put the device in pairing mode. A Bluetooth device will not appear just because it is powered on. Hold the Bluetooth button until a light flashes.
  • Never checking Optional Updates. Bluetooth driver patches ship under Settings > Windows Update > Advanced options > Optional updates. After any update that breaks Bluetooth, check there first.

Most of these mistakes waste hours on a problem the built-in fixes above clear in minutes.

Frequently Asked Questions

Why did Bluetooth stop working after a Windows 11 update?

An update sometimes replaces the Bluetooth driver with an incompatible version. Reinstalling the driver through Device Manager, or installing a corrected one from Optional Updates, resolves it in most cases. After one feature update my mouse died instantly, and an Optional Update driver brought it straight back.

My Bluetooth toggle is missing from Settings — what happened?

The Bluetooth Support Service has most likely stopped. Open services.msc, find Bluetooth Support Service, and set it to Start with Automatic startup, then restart. On my own laptop the toggle reappeared the moment that service started running again.

Why does my Bluetooth device connect then immediately disconnect?

The saved pairing profile is corrupt. Remove the device from Settings > Bluetooth & devices, put it back into pairing mode, and re-add it. My wireless earbuds did exactly this for a week until a fresh re-pair fixed it for good.

Can I fix Bluetooth without reinstalling Windows?

Yes. Every fix here uses only built-in Windows tools, and a full reinstall is almost never required. I have repaired dozens of Bluetooth issues without ever resorting to a clean install.

Why can’t Windows 11 find my Bluetooth device?

The device must be in discoverable or pairing mode, not simply powered on. Most peripherals need you to hold the Bluetooth button for three to five seconds until a light flashes. I once searched for ten minutes before realizing my speaker was just powered on, not pairing.

Does resetting network settings fix Bluetooth problems?

Sometimes. Settings > Network & internet > Advanced network settings > Network reset restores Bluetooth-related components to defaults, but it also wipes saved Wi-Fi passwords. I keep it as a last resort and try the earlier fixes first.

Conclusion

Bluetooth not working on Windows 11 is rarely a dead adapter. Toggle the switch, restart the Bluetooth Support Service, and reinstall the driver — those three steps clear most cases, and re-pairing handles a stubborn single device.

Hitting other hardware headaches? My guide on fixing a printer not detected in Windows 11 uses the same Device Manager and driver moves — give it a read if your printer is acting up too.

Printer Not Detected in Windows 11: How to Get It Working Again

Printer not detected in Windows 11? I walk through the exact order I use to fix it — troubleshooter, Print Spooler, driver, and manual add. Printing again in minutes.

You plug in your printer, wait for it to show up, and nothing happens. Windows 11 acts like the printer isn’t even there. I have hit this on my own desk more than once, and the cause is almost always one of three quiet failures rather than dead hardware. A printer not detected in Windows 11 is nearly always a driver, a stalled Print Spooler, or a connection Windows can’t see — and every one of those is free to fix.

Below is the exact order I work through, from the fastest check to the more thorough repairs. Start at the top and stop as soon as your printer appears.

Quick Answer

To fix a printer not detected in Windows 11, open Settings > Bluetooth & devices > Printers & scanners > Add a device. If nothing appears, run the Printer troubleshooter under Settings > System > Troubleshoot > Other troubleshooters, then reinstall the driver from Device Manager. Restarting the Print Spooler service clears most remaining cases.

Why won’t Windows 11 detect your printer?

A printer needs three things working at once: a live hardware connection, a working driver, and a background service called the Print Spooler that manages your print jobs. When any one breaks, Windows simply stops seeing the device. The first time this happened to me it was a single bad driver after a feature update — the printer was fine, Windows just couldn’t talk to it. Common triggers include:

  • A corrupted or outdated driver after a Windows 11 update
  • The Print Spooler service stopping unexpectedly
  • A loose USB cable, or a printer plugged into a hub instead of directly into the PC
  • A wireless printer that dropped off the network or changed its IP address

In short, the printer is usually fine — the link between it and Windows is what broke.

Should you run the built-in printer troubleshooter first?

Yes. Windows 11 ships with a troubleshooter that detects and repairs many printer faults on its own, and it is the lowest-effort place to start. It takes under two minutes.

  1. Press Windows + I to open Settings.
  2. Go to System > Troubleshoot > Other troubleshooters.
  3. Find Printer in the list and click Run.
  4. Follow the prompts and apply any fixes it suggests.
  5. Restart your PC, then check Settings > Bluetooth & devices > Printers & scanners.

One tip from experience: even when it reports “no issues found,” the printer often appears after the reboot, because the tool quietly restarted the Print Spooler in the background.

The troubleshooter fixes a surprising share of cases on its own, so always try it before touching anything deeper.

Have you ruled out the physical connection?

Before touching software, I rule out the obvious hardware causes, because they are the most common and the fastest to clear.

  • USB printers: Unplug the cable from the PC, wait 10 seconds, and plug it into a different port. Skip USB hubs — go straight into the PC. If the port itself seems dead, my guide on fixing a USB device not recognized in Windows 11 walks through the port and power-management checks.
  • Wireless printers: Make sure the printer and PC are on the same Wi-Fi network. Many dual-band routers split 2.4 GHz and 5 GHz clients — put both devices on the same band.
  • Power: Confirm the printer is on and not flashing an error light or showing a message on its panel.

One thing I learned the hard way: if the printer worked before a laptop restart and then vanished, the USB port likely entered power-saving mode. Fully shut down, restart, and reconnect directly to the port.

Half the “undetected” printers I see are really a loose cable, a hub, or a band mismatch.

How do you restart the Print Spooler service?

The Print Spooler queues and sends every print job. When it freezes, Windows loses contact with all printers at once. Restarting it takes about a minute and is the fix I reach for most often.

  1. Press Windows + R, type services.msc, and press Enter.
  2. Scroll to Print Spooler.
  3. Right-click it and choose Stop.
  4. Wait five seconds, right-click again, and choose Start.
  5. Confirm the Startup type column shows Automatic.

While you are in Services, check that Printer Extensions and Notifications is also running and set to Automatic. If it is stopped, start it the same way.

A stalled spooler mimics a hardware failure perfectly, so restart it before assuming the printer is broken.

How do you reinstall the printer driver?

An outdated or corrupted driver is the single biggest reason Windows 11 stops detecting a printer, especially right after a major update. A clean reinstall gives Windows a fresh start.

  1. Press Windows + X and click Device Manager.
  2. Expand Print queues (or Printers, depending on your build).
  3. Right-click your printer and choose Uninstall device. Tick the box to delete the driver software if it appears.
  4. Disconnect the USB cable, or turn off the wireless printer.
  5. Reconnect or power it back on — Windows tries to reinstall the driver automatically.
  6. If it doesn’t, download the latest driver for your exact model from the manufacturer’s official website.

If your printer isn’t under Print queues, look under Other devices. A yellow warning icon there means Windows saw the printer but the driver failed to load — uninstall it from there and reinstall. If the driver keeps failing to install, a stalled update is often behind it; see my walkthrough on fixing Windows Update when it won’t work on Windows 11.

When in doubt after an update, reinstall the driver before anything else — it resolves the majority of post-update cases.

How do you add the printer manually?

Sometimes Windows detects a printer but never finishes adding it. You can force the issue through Settings.

  1. Go to Settings > Bluetooth & devices > Printers & scanners.
  2. Click Add a device and wait about 30 seconds for the scan.
  3. If nothing shows, click the Add manually link below the results.
  4. Pick the option that matches your setup: USB, wireless/network, or local port.
  5. Follow the wizard to finish.

Once it is added, right-click the printer and choose Set as default so Windows routes jobs to it automatically.

Manual add rescues the printers Windows can see but stubbornly refuses to install on its own.

Comparing the fixes: which one should you try?

When I’m not sure where to start, I match the symptom to the fix. This table is the shortcut I use.

Fix Best for Time
Printer troubleshooter Unknown cause, fastest first pass ~2 min
Check the connection Printer worked before, suddenly gone ~2 min
Restart Print Spooler Printer shows offline or jobs hang ~1 min
Reinstall the driver Stopped working after a Windows update ~5 min
Add manually Printer detected but never installs ~3 min
Manufacturer setup tool Wireless printer Windows can’t find ~10 min

Match the symptom to the row and you’ll usually skip straight to the fix that works.

What if you still need Windows Update or a vendor tool?

If the driver still won’t behave, two heavier options remain. First, run Windows Update — a later update often ships the very driver an earlier one broke. Go to Settings > Windows Update, click Check for updates, and open any Optional updates or Driver updates section to install what’s listed, then restart.

If that fails, bypass Windows and use the printer brand’s own free setup software, which often resolves conflicts Windows misses:

  • HP: HP Smart app (Microsoft Store)
  • Canon: Canon PRINT app or IJ Network Device Setup Utility
  • Epson: Epson Connect Printer Setup Utility
  • Brother: Brother iPrint&Scan

For wireless printers especially, these utilities handle network discovery far better than the built-in wizard. Microsoft also keeps a current reference for printer setup and sharing in its official printer support documentation.

When Windows gives up, the vendor’s own tool is your best shot at getting a stubborn wireless printer online.

What are the common mistakes to avoid?

  1. Not rebooting after installing a driver. Drivers need a full restart to load. Reboot before deciding a fix failed — this wastes more time than any other mistake.
  2. Downloading drivers from random sites. Use only the manufacturer’s official website. Unofficial driver sites often bundle malware or stale files. Fix: get the driver straight from HP, Canon, Epson, or Brother.
  3. Plugging the printer into a USB hub. Many printers need more power or a steadier data line than a hub offers. Fix: connect directly to a USB port on the PC.
  4. Leaving an old printer as default. Windows may be quietly sending jobs to a disconnected device. Fix: open Printers & scanners and confirm the right printer is set as default.
  5. Ignoring firewall settings for network printers. A firewall or antivirus can silently block discovery. Fix: briefly disable the firewall, add the printer, then turn the firewall back on right away.

Sidestep these five traps and you’ll avoid the detours that turn a five-minute fix into an afternoon.

Frequently Asked Questions

Why does Windows 11 say my printer is offline?

Offline means Windows is reaching for a printer that isn’t answering — usually powered off, on a different network, or stalled by the Print Spooler. Power-cycle the printer and restart the Print Spooler to clear it. On my own setup, a quick spooler restart fixes the offline tag about nine times out of ten.

Do I need to install printer drivers manually on Windows 11?

Not always. Windows 11 installs generic drivers for many printers through Windows Update automatically. But for full features you’ll want the manufacturer’s package. When I set up my Brother printer, scanning and ink monitoring only appeared after I installed Brother’s own driver rather than the generic one.

Why did my printer stop working after a Windows 11 update?

An update can overwrite or clash with your existing printer driver. Uninstall the printer in Device Manager and reinstall the latest driver from the manufacturer. After one feature update broke my HP, a clean driver reinstall brought it straight back the same evening.

Can I use an older printer with Windows 11?

Yes, in most cases — Windows 11 supports most printers from the past decade. If no Windows 11 driver exists, install the Windows 10 driver from the manufacturer; it usually works. I kept a six-year-old Canon running this way using its Windows 10 driver without any issues.

Why can’t Windows 11 find my wireless printer?

The printer and PC must share the same Wi-Fi network and frequency band. Many dual-band routers isolate 2.4 GHz and 5 GHz clients — move both to the same band. In my case, switching my laptop from 5 GHz to 2.4 GHz made the printer appear instantly.

What is the Print Spooler and why does it matter?

The Print Spooler is the Windows service that queues your print jobs and feeds them to the printer in order. If it crashes, Windows loses contact with every printer at once. I treat restarting it as my default second move because it fixes so many “undetected” printers in seconds.

Conclusion

A printer Windows 11 can’t detect is nearly always a driver, service, or connection issue — and all three are free to fix. Run the troubleshooter, restart the Print Spooler, reinstall the driver, and add the printer manually if needed. Most people are printing again within 10 minutes. If your PC is also crawling while you troubleshoot, my guide to speeding up a slow Windows 11 PC can help, and if installs keep failing on low storage, try freeing up disk space on Windows 11 first.

How to Free Up Disk Space on Windows 11 (Fast, Free, and Safe)

Free up disk space on Windows 11 with built-in tools like Storage Sense and Disk Cleanup. Reclaim 5-20 GB in minutes, no reinstall and no paid cleaner needed.

The first time a red “C: drive almost full” warning hit one of my own laptops, the PC had already started failing Windows updates and choking on simple file saves. I spent ten minutes inside built-in Windows tools and clawed back 18 GB without installing anything. A full disk on Windows 11 is almost never a hardware problem — it is housekeeping you can finish before your coffee gets cold.

This guide walks through exactly how I free up disk space on Windows 11, in the order I actually run it. Every tool here ships with Windows, so you will not need a single paid “PC cleaner.”

Quick Answer

To free up disk space on Windows 11, open Settings > System > Storage and run Storage Sense, then use Disk Cleanup to clear temporary files and old Windows Update data. Empty the Recycle Bin, clear Downloads, and uninstall unused apps. Together these recover 5-20 GB in under 10 minutes.

Which Cleanup Method Frees the Most Space?

Before you dig in, it helps to see how the built-in methods compare so you start with the biggest wins. The table below shows what I typically reclaim from each, ranked by effort versus payoff.

Method Typical space recovered Effort Best for
Storage Sense 1-5 GB Very low (automatic) Ongoing prevention
Disk Cleanup (system files) 3-12 GB Low Old Windows Update data
Clear Downloads folder 5-15 GB Low Forgotten installers and media
Uninstall unused apps 2-20 GB Medium Games and bloatware
Disable hibernation 4-16 GB Low (one command) Desktops that never hibernate

Start with Disk Cleanup and your Downloads folder, because they deliver the largest gigabyte returns for the least effort.

Why Is Your Windows 11 Disk Filling Up?

Windows 11 quietly accumulates junk in the background, and a handful of culprits cause most of the damage:

  • Temporary files created by Windows and apps, rarely cleaned up on their own.
  • Old Windows Update files kept as a rollback backup long after you need them.
  • Hibernation file (hiberfil.sys), which reserves space equal to your total RAM.
  • Bloatware and unused apps that came pre-installed and never got opened.
  • Forgotten Downloads and Recycle Bin content, the most overlooked space hogs of all.

A full drive also slows your entire PC down, because Windows needs free space to run smoothly and apply updates. If the machine still feels sluggish after you clear space, the bottleneck may be I/O rather than storage, which is worth checking against 100% disk usage on Windows 11.

Most of your wasted space comes from temp files, old update data, and a Downloads folder nobody ever empties.

How Do You Run Storage Sense to Clear Space Automatically?

Storage Sense is the built-in automatic cleaner, and it is where I always start because it does the boring work on a schedule. It deletes temp files, manages old Recycle Bin content, and runs on demand whenever you want.

  1. Press Windows + I to open Settings.
  2. Go to System > Storage.
  3. Toggle Storage Sense to On.
  4. Click Storage Sense to open its settings.
  5. Under “Run Storage Sense,” select Every week.
  6. Scroll down and click Run Storage Sense now.

While you are here, turn on “Automatically delete content in my Recycle Bin if it’s been there for over 30 days.” On my own machines that one toggle means I never think about emptying the bin again.

Storage Sense is your set-and-forget cleaner, so enable the weekly schedule and let it prevent buildup for you.

How Does Disk Cleanup Recover the Most Space?

Disk Cleanup reaches files Storage Sense skips, especially old Windows Update files, which are often the single biggest recovery on the whole drive. On one of my work PCs this step alone freed 9 GB.

  1. Press Windows + S, type Disk Cleanup, and press Enter.
  2. Select your C: drive and click OK.
  3. Click Clean up system files to unlock the largest categories.
  4. Select C: drive again and check the boxes, paying special attention to Windows Update Cleanup and Previous Windows installations.
  5. Click OK, then Delete Files.

If “Windows Update Cleanup” does not appear, your PC may still be processing a recent update. Wait 24 hours after your last update, then try again. If updates themselves are stuck, see my guide on fixing Windows Update not working on Windows 11.

Always click “Clean up system files” — that single button exposes the multi-gigabyte update data the basic scan hides.

Which Apps and Files Should You Remove First?

After the automated cleaners, I go after the big manual wins: unused apps, a bloated Downloads folder, and the Recycle Bin. The trick is to sort by size everywhere so you spend your effort on the heavy hitters.

Uninstall apps you never use

  1. Press Windows + I to open Settings.
  2. Go to Apps > Installed apps.
  3. Sort by Size to see the biggest offenders first.
  4. Click the three-dot menu next to any app you do not use, then choose Uninstall.

Target games, trial software, and manufacturer apps that shipped with the PC. Sorting by size makes the worst offenders obvious.

Clean out your Downloads folder

  1. Press Windows + E to open File Explorer.
  2. Navigate to This PC > Downloads (usually at C:\Users\YourName\Downloads).
  3. Sort files by Date modified to surface the oldest items first.
  4. Delete anything you no longer need: installers, setup files, old documents, video downloads.

On a PC used for a year or two, I routinely find 5-15 GB of forgotten files here. This is one of the fastest recoveries available.

Empty the Recycle Bin

Deleted files sit in the Recycle Bin and keep occupying disk space until you empty it. Right-click the Recycle Bin icon on your desktop, click Empty Recycle Bin, and confirm. If you enabled the Storage Sense option above, this now happens automatically.

Sort apps and downloads by size, clear the Recycle Bin, and you can reclaim more than the automated tools combined.

How Do You Find Large Hidden Files Eating Your Drive?

Sometimes the real culprit is a single giant file rather than a thousand small ones. Go to Settings > System > Storage and click each category, such as Apps, Temporary files, or Other, to drill into what is actually consuming space.

For a deeper view, Microsoft’s file management documentation explains how Windows tracks storage, and a utility like WinDirStat charts your entire drive as color-coded blocks so you can spot the biggest folders instantly. Check your Videos, Pictures, and Desktop folders too — a few forgotten 4K recordings or disk image (.iso) files can outweigh months of temp files combined.

A storage map turns “where did my space go?” into an obvious answer in seconds.

Should You Disable Hibernation to Reclaim Space?

The hibernation file (hiberfil.sys) reserves disk space equal to your total RAM. On a 16 GB machine, that is 16 GB tied up doing nothing if you never hibernate. If you shut down rather than hibernate, you can safely reclaim it.

  1. Right-click the Start button and choose Terminal (Admin).
  2. Type powercfg /h off and press Enter.
  3. Restart your PC.

This removes the Hibernate option from your power menu, so skip it if you regularly use Hibernate instead of Sleep or Shut Down. When I disabled it on a 16 GB laptop, the freed space showed up immediately after the restart.

Disabling hibernation is an optional bonus that recovers 4-16 GB, but only do it if you never use Hibernate.

What Common Mistakes Should You Avoid?

  • Skipping “Clean up system files” in Disk Cleanup. Fix: always click it. The basic scan misses the largest files, including old Windows Update data worth several gigabytes.
  • Ignoring the Downloads folder. Fix: make clearing it a monthly habit, because it never auto-cleans and fills faster than anything else.
  • Installing paid “PC cleaner” apps from ads. Fix: skip them. Many are scamware or bloatware themselves, and the built-in tools are free and equally effective.
  • Deleting files you cannot identify. Fix: search the name online first, and if you remove something important, here is how to recover deleted files on Windows 11.
  • Focusing only on temp files. Fix: a single forgotten 4K video or .iso can outweigh months of junk, so always check your media and large-file categories.

Avoid these five traps and your cleanup stays safe, free, and far more effective than any paid tool.

Frequently Asked Questions

How much free disk space should Windows 11 have?

Keep at least 10-15% of your drive free at all times. On a 500 GB drive that is roughly 50-75 GB; on my own 256 GB SSD I start cleaning the moment it drops under 40 GB, because below 10% Windows slows noticeably and updates begin failing.

Is it safe to delete Windows Update cleanup files?

Yes. Once Windows has held update files for a few weeks as a safety buffer, removing them via Disk Cleanup is completely safe. I have done it on dozens of machines; the only trade-off is you cannot roll back to a previous Windows version, which most people never need.

Will Storage Sense delete my personal files?

No. Storage Sense only removes temporary files, old Recycle Bin content, and optionally old Downloads if you enable that setting. When I turned it on for a relative who hoards photos, every document and picture stayed exactly where it was.

Why does my C: drive keep filling up so fast?

Usually it is the Windows Update cache, browser cache growth, and app caches from programs like Teams, Spotify, and Discord. On my main PC, Spotify alone had cached several gigabytes; enabling Storage Sense weekly stopped that creep before it became a problem.

Can I move apps to another drive to save space on C:?

Yes, for many apps. Go to Settings > Apps > Installed apps, click an app, and look for a Move option. Not every app supports it, but most Microsoft Store apps do; I moved two large games to a second drive and recovered over 20 GB on C: in one sitting.

What is the fastest way to free up a large amount of space?

Run Disk Cleanup with “Clean up system files” enabled, then clear your Downloads folder and uninstall two or three large apps you no longer use. That combination typically recovers 10-20 GB in under 15 minutes, which is exactly how I rescued my own near-full laptop.

Conclusion

A full disk on Windows 11 is a fixable problem with no new hardware required. Start with Storage Sense and Disk Cleanup, clear the Downloads folder, uninstall forgotten apps, then leave Storage Sense running weekly so you rarely think about it again.

Try it right now: press Windows + I, go to System > Storage, and run Storage Sense. Most people recover 5 GB or more in the very first pass.

Laptop Battery Draining Fast on Windows 11: How to Get Your Runtime Back

Laptop battery draining fast on Windows 11? I walk through the power-plan, brightness, and driver fixes I use to claw back 1-3 hours of runtime today.

My own ThinkPad went from an all-day machine to one that begged for a charger by lunch, and a single Windows 11 update was the trigger. After working through it on my own laptop and a dozen others, I found the cause is almost never a dead battery — it is a handful of settings and a stray driver quietly burning power in the background. The good news: most of the drain is software, and you can reverse it in minutes without spending a penny.

This guide covers the exact order I use, from a 30-second power-plan switch to a deeper driver check and a battery health report. Work top to bottom and stop when your runtime recovers.

Quick Answer

To stop a laptop battery draining fast on Windows 11, switch to the Balanced or Best power efficiency power mode, turn on Battery Saver, lower screen brightness to 50-60%, and restrict background apps. Then disable Bluetooth and location when unused. Most laptops recover one to three hours of runtime from these steps alone.

Why is your battery draining so fast on Windows 11?

When I diagnose fast drain, the cause is almost always one or more of these, and they stack up quietly over time:

  • Background apps running unseen — apps keep refreshing and syncing even when you are not using them.
  • The wrong power mode — “Best performance” keeps your CPU running near full speed constantly.
  • A bright display — the screen is usually the single biggest power draw on any laptop.
  • Bluetooth and Wi-Fi radios — active even when nothing is connected.
  • Outdated or buggy drivers — especially common right after a Windows 11 update.
  • An aging battery — after two to three years, most cells lose meaningful capacity.

Fast drain is a stack of small power leaks, not one single villain — so fixing several at once is what wins back hours.

Which Windows 11 power mode should you choose?

Windows 11 power modes control how aggressively your hardware uses energy. The first time I touch a draining laptop, I check this, because “Best performance” alone can halve your runtime.

  1. Open Settings from the Start menu.
  2. Go to System > Power & battery.
  3. Under Power mode, pick the option that matches how you are working.
Power mode Best for Effect on battery
Best power efficiency Travel, light tasks, long meetings Longest runtime
Balanced Everyday mixed use Good runtime, full speed when needed
Best performance Plugged in, heavy workloads Shortest runtime

For unplugged use I keep mine on Balanced and drop to Best power efficiency when I know I am away from an outlet for hours.

Choosing Balanced or Best power efficiency on battery is the single fastest win on this list.

Does turning on Battery Saver actually help?

Yes. Battery Saver is Windows 11’s built-in conservation mode, and it does real work: it cuts background activity, dims the screen, and pauses non-essential sync. On my laptop it reliably buys an extra 30 to 45 minutes.

  1. Open Settings > System > Power & battery.
  2. Under Battery Saver, click Turn on now, or set it to switch on automatically at 20%.

Microsoft’s own battery-saving guidance for Windows confirms this is the intended way to stretch a charge in a pinch.

If Battery Saver is greyed out, open Device Manager and check under Batteries. A yellow warning icon on the battery driver means it needs updating — right-click and choose Update driver.

Battery Saver is the closest thing to a one-click runtime boost Windows 11 offers.

How much does screen brightness affect battery life?

More than people expect. The display is usually the biggest single drain, so dropping from 100% to around 50-60% makes a noticeable difference the moment you do it.

  1. Press Windows + A to open the Quick Settings panel.
  2. Drag the brightness slider down to roughly 50-60%.

You can also adjust it under Settings > System > Display > Brightness. If your laptop has an ambient light sensor, turn on Adaptive brightness so it never burns more light than the room needs.

Brightness is a slider you control every second, and lowering it pays off immediately.

How do you stop background apps from draining power?

Many apps keep working in the background — refreshing data, syncing, checking for updates — even when you never open them. I cut the worst offenders off entirely.

  1. Open Settings > Apps > Installed apps.
  2. Find an app, open its three-dot menu, and choose Advanced options.
  3. Under Background apps permissions, set it to Never.

The repeat offenders I disable first are Spotify, OneDrive, Xbox Game Bar, and chat apps I only check a few times a day. Some apps also launch at boot as startup items — open Task Manager (Ctrl + Shift + Esc), click Startup apps, and disable anything you do not need running from the moment you sign in.

Every background app you silence is power and CPU you get back across the whole day.

How do you find which app is eating your battery?

Windows 11 keeps a battery usage report that ranks apps by exactly how much power each one consumed, so you are never guessing.

  1. Go to Settings > System > Power & battery.
  2. Scroll to Battery usage and expand it.
  3. Set the time range to the last 24 hours or 7 days.

When I do this, one app is usually hogging a disproportionate share. A browser is the classic offender, and the same runaway processes that drain your battery often spike your processor too — if yours is pegged, my walkthrough on fixing 100% CPU usage on Windows 11 tracks down the culprit the same way.

The battery usage report turns “something is draining it” into a named app you can act on.

Should you disable Bluetooth and location to save battery?

When you are not using them, yes. Both radios sip power continuously, even when nothing is connected or asking for your location.

Turn off Bluetooth

  1. Press Windows + A to open Quick Settings.
  2. Click the Bluetooth tile to toggle it off.

Turn off location services

  1. Go to Settings > Privacy & security > Location.
  2. Toggle Location services off, or disable it per app further down the page.

While you are in Device Manager, you can also trim your Wi-Fi adapter’s draw: under Network adapters, right-click your Wi-Fi adapter, open Properties > Power Management, and tick Allow the computer to turn off this device to save power.

Switching off radios you are not using is free runtime with zero downside.

How do you fix battery drain caused by a bad driver?

A buggy driver — especially right after a major Windows 11 update — can push your CPU or GPU to run hotter and harder than it should. This is the cause I check when the drain appeared overnight.

  1. Open Device Manager (right-click Start and select it).
  2. Expand Display adapters, Network adapters, and Batteries, and look for yellow warning icons.
  3. Right-click any flagged device and choose Update driver > Search automatically for drivers.

If the drain started right after an update, roll the driver back instead: right-click the device > Properties > Driver tab > Roll Back Driver (if available). When Windows cannot find anything newer, download drivers directly from your laptop maker — Dell, HP, Lenovo, or ASUS — for your exact model number.

A single bad driver can undo every other fix, so it is always worth a look when drain is sudden.

How do you check if your battery is simply worn out?

If nothing above helps, the cell itself may be aging. Windows 11 can generate a detailed health report from one command.

  1. Right-click Start and choose Terminal (Admin).
  2. Type the command below and press Enter:
    powercfg /batteryreport /output C:\battery-report.html
  3. Open File Explorer, go to C:, and open battery-report.html in your browser.

Compare Design capacity with Full charge capacity. The first time I ran this on my old laptop, full charge capacity had dropped to about 55% of design — a clear sign the battery, not the software, was the problem. Below 60%, a replacement is worth considering.

The battery report is the deciding test: it tells you whether to keep tweaking settings or budget for a new cell.

Common Mistakes to Avoid

  • Running Best performance while unplugged. This is the fastest way to empty a battery in one session. Fix: switch to Balanced or Best power efficiency whenever you are on battery.
  • Charging to 100% and leaving it plugged in for days. Lithium cells age fastest when held full. Fix: use the battery-limit feature in your maker’s app (Dell, Lenovo, and HP all include one) to cap charging around 80%.
  • Skipping Windows Update. Many drain fixes ship as driver patches through Update. Fix: stay current, and if Update itself is stuck, work through my guide on fixing Windows Update when it will not work.
  • Closing the lid mid-sync. Sleeping while OneDrive or a backup is mid-transfer keeps storage and CPU awake longer than expected. Fix: pause large syncs before you close the lid.
  • Never restarting. Memory leaks and runaway processes pile up over days, and they drain power as well as slow you down. Fix: restart regularly; for more lean-running tips see how to speed up a slow Windows 11 PC.

Most fast-drain cases I see are one of these five habits, not a faulty battery, so rule them out before you blame the hardware.

Frequently Asked Questions

Why is my Windows 11 laptop battery draining so fast all of a sudden?
A recent Windows Update, a newly installed app, or a driver glitch is usually the trigger. For example, when my own drain appeared overnight, the battery usage report pointed straight at a sync app that had updated that morning — disabling its background access fixed it.

Does Windows 11 drain more battery than Windows 10?
On older hardware it can, slightly, because of widgets, animations, and background telemetry. On a 2017 laptop I tested, turning off visual effects under Settings > Accessibility and restricting background apps brought it back in line with its Windows 10 runtime.

What is a good battery health percentage for a laptop?
Above 80% of original design capacity is healthy; below 60% the runtime drop is obvious. My main laptop sat at 88% after two years of daily use, which is exactly where I would expect a well-treated cell to be.

Can Windows 11 updates cause battery drain?
Yes, when an update ships a driver change that increases CPU or GPU load. If drain started after an update, roll back the affected driver in Device Manager. On one of my machines the same driver also caused stutter, so rolling it back fixed both at once.

How do I check battery health in Windows 11?
Run powercfg /batteryreport /output C:\battery-report.html in an elevated Terminal, then open the file in your browser. It shows design capacity, current capacity, and a full charge-cycle history — that report is how I confirmed my old battery needed replacing.

Will replacing the battery fix the problem?
If the report shows full charge capacity well below design capacity, yes — a new cell restored nearly all of my original runtime. But if capacity is still high and drain is fast, the cause is software, and the settings fixes above are what you need.

Conclusion

Fast battery drain on Windows 11 is almost always a software problem you can fix for free. Start with the quick wins — power mode, Battery Saver, brightness, and background apps — then move to drivers and the battery report only if the drain holds.

Battling slowdowns alongside the drain? Walk through my guide on how to speed up a slow Windows 11 PC and reclaim performance the same free, built-in way.

Windows Update Not Working on Windows 11: How to Get It Installing Again

Windows Update not working on Windows 11? I walk through the exact order I use — Troubleshooter, cache clear, SFC and DISM — to get updates installing fast.

The progress bar hasn’t moved in an hour, a cryptic error code keeps flashing, or the same update fails in a loop. I have hit all three on my own Windows 11 desktop, and the fix was never a reinstall. *Windows Update not working on Windows 11 is almost always a corrupted cache, a stalled service, or a clock that drifted out of sync — every one fixable with tools already on your PC.*

Below is the exact order I work through, starting with the 60-second checks and escalating only if they fail. No downloads, no paid “optimizer” tools, no command-line risk until you actually need it.

## Quick Answer

Open Settings > Windows Update and click Retry, then run the built-in Troubleshooter under System > Troubleshoot > Other troubleshooters. For stubborn failures, stop the Windows Update service, delete everything inside C:\Windows\SoftwareDistribution\Download, and restart. That clears the corrupted cache behind most stuck updates.

## Why does Windows Update fail on Windows 11?

Windows Update relies on background services, a local download cache, and a live link to Microsoft’s servers. Break any link in that chain and the update stalls:

– **Corrupted update cache** — partially downloaded files confuse the updater.
– **Stopped Windows Update service** — it sometimes crashes silently.
– **Not enough disk space** — updates need roughly 5–10 GB free to download and unpack.
– **Wrong system date or time** — breaks the server’s security handshake.
– **Paused updates** — Windows 11 lets you pause for up to 5 weeks, and it is easy to forget.

Most failures trace back to a stale cache or a service that quietly stopped, not to broken hardware.

*Most failures trace to software, not hardware — which is why the tools on your PC fix them.*

## How do you do the two-minute checks first?

Before touching the command line, I clear the easy causes. These three take under two minutes combined and resolve a surprising number of cases.

### Retry and confirm your connection

1. Open a browser and confirm you are actually online.
2. Go to Settings > Windows Update.
3. Click Check for updates or Retry.

A dropped connection mid-download is a common culprit. When I am pulling a large feature update, I switch from Wi-Fi to a wired Ethernet cable — Wi-Fi drops during a big download often corrupt the file. If your connection itself is unstable, sorting that out first saves you repeating every fix below.

### Make sure updates are not paused

1. Go to Settings > Windows Update.
2. Look for a Resume updates button near the top.
3. Click it if it is there, then click Check for updates.

I have lost ten minutes troubleshooting before noticing I had paused updates myself weeks earlier. Check this first.

### Run the Windows Update Troubleshooter

1. Open Settings (Win + I).
2. Go to System > Troubleshoot > Other troubleshooters.
3. Find Windows Update and click Run.
4. Follow the prompts, restart, then try updating again.

Even when it reports that it “couldn’t fix the problem,” it often silently restarts a blocked service. I always retry Windows Update afterward regardless of what it says.

*These three checks fix paused updates, flaky connections, and broken services without any risk.*

## How do you clear the Windows Update cache?

Corrupted files in the cache are the single most common cause of stuck or looping updates. Clearing them forces Windows to fetch a clean copy. This is the fix that solved my own looping update last year.

1. Press Win + R, type services.msc, and press Enter.
2. Find Windows Update, right-click it, and choose Stop.
3. Do the same for Background Intelligent Transfer Service (BITS).
4. Open File Explorer and go to C:\Windows\SoftwareDistribution\Download.
5. Press Ctrl + A to select all files and delete them. Leave the folder itself in place.
6. Return to Services and start Windows Update and BITS again.
7. Go to Settings > Windows Update and click Check for updates.

If you hit a “file in use” error while deleting, restart your PC and delete the files before opening any other program. For the deeper details on how Windows resets these components, Microsoft’s own Windows Update troubleshooting guide documents the service names and folders.

*Clearing the download cache fixes the majority of stuck and looping updates on its own.*

## How do you repair the update engine with SFC and DISM?

Corrupted system files can silently break the update engine. Two command-line tools repair them, and the order matters.

1. Search for cmd, right-click Command Prompt, and choose Run as administrator.
2. Type sfc /scannow and press Enter. This takes 10–15 minutes.
3. When it finishes, stay online and type DISM /Online /Cleanup-Image /RestoreHealth, then press Enter.
4. Restart your PC and try Windows Update again.

I run SFC first because it flags the corrupt files, then DISM downloads clean replacements from Microsoft’s servers to repair what SFC could not. Reversing the order wastes a pass. These same tools repair the system files behind unrelated breakage too, like a Windows 11 PC that freezes randomly.

*SFC and DISM together repair the underlying files that block updates from finishing.*

## What do you do for date, time, and disk space errors?

Two quieter causes produce failures with no useful error message at all: a drifted clock and a full drive.

### Fix the system clock

1. Right-click the taskbar clock and choose Adjust date and time.
2. Turn on Set time automatically and Set time zone automatically.
3. Click Sync now, then retry Windows Update.

An off clock breaks the security handshake with Microsoft’s servers, and the update simply fails without explaining why.

### Free up disk space

1. Go to Settings > System > Storage.
2. Click Temporary files, select what is safe to remove, and click Remove files.
3. Search for Disk Cleanup in the Start menu, run it, and check Windows Update Cleanup.

Updates fail silently when there is no room to unpack them. If your drive is nearly full, my guide on how to free up disk space on Windows 11 walks through reclaiming gigabytes safely, or move large videos and downloads to an external drive before retrying.

*Syncing the clock and freeing a few gigabytes resolves the failures that show no error code at all.*

## Which fix should you try first?

Work top to bottom. Each row is ordered by how fast and how likely it is to help.

Fix Best for Time needed Difficulty
Retry / Resume Paused updates or minor glitches 1 min Easy
Troubleshooter Most common errors 5 min Easy
Date/time sync Auth errors with no clear cause 2 min Easy
Clear update cache Stuck or looping updates 10 min Moderate
Free disk space “Not enough space” errors 10–15 min Easy
SFC + DISM Persistent error codes 30–60 min Moderate

*Start at the top, retry an update after each step, and stop the moment one works.*

## What mistakes make Windows Update worse?

A few habits turn a stuck update into a corrupted install or send you chasing the wrong fix. Avoid these while you work through the steps above.

– **Turning off the PC mid-install.** Interrupting an update that is actively installing, not just downloading, can corrupt Windows. Watch for drive activity before giving up.
– **Ignoring error codes.** Codes like 0x80070002 or 0x800f0922 each point to a specific fix. Search the exact code rather than guessing.
– **Deleting the SoftwareDistribution folder itself.** Only delete the files inside C:\Windows\SoftwareDistribution\Download. The folder must remain.
– **Updating over a metered connection.** Windows 11 blocks large updates on metered connections like mobile hotspots. Go to Settings > Network and disable “Metered connection” temporarily.
– **Skipping restarts.** Most fixes only take effect after a full reboot. Do not assume a fix failed before you have restarted.

*Avoid these five habits and you stop turning a stalled update into a bigger repair job.*

## Frequently Asked Questions

### Why does Windows 11 say “Update failed” with no explanation?

It is almost always a corrupted cache or a stopped service. Run the Troubleshooter first, then clear the cache if that does not resolve it. On my own PC, an “Update failed” with no code cleared the moment I emptied the SoftwareDistribution\Download folder and restarted.

### How long should a Windows 11 update take?

Security updates usually take 5–20 minutes; major feature updates can run 30–90 minutes. If the same percentage has not changed in over two hours with no drive activity, a restart is safe. I once let a feature update sit at 61% for 40 minutes before the drive light confirmed it was still writing.

### What does Windows Update error 0x80070005 mean?

It is a permissions error, usually a third-party antivirus blocking the update. Temporarily disable the antivirus, retry, then re-enable it. When this hit a friend’s laptop, adding Windows Update to the antivirus exclusion list stopped it from recurring.

### Can I manually download Windows 11 updates?

Yes. Visit the Microsoft Update Catalog at catalog.update.microsoft.com and search for the KB number shown in Windows Update. I keep this open as a fallback when the automatic updater keeps failing on one specific KB while everything else installs fine.

### Will clearing SoftwareDistribution delete my personal files?

No. It only removes Windows Update’s temporary download files, never your documents, photos, or installed apps. I have done it dozens of times and have never lost a single personal file.

## Conclusion

Windows Update not working on Windows 11 is almost always fixable with the tools already on your PC. Start with the Troubleshooter and cache clear; those two alone solve most cases, and SFC plus DISM handle the stubborn ones.

Once updates are flowing again, keep the momentum and check my guide on how to speed up a slow Windows 11 PC for the next step.

Speed Up a Slow Windows 11 PC: Free Fixes With No New Hardware

Want to speed up a slow Windows 11 PC for free? I walk through the built-in tweaks I run first, then the deeper fixes, with no new hardware needed at all.

When I want to speed up a slow Windows 11 PC, I never reach for a download or my wallet first. Almost every sluggish machine I have touched got dramatically faster from settings that already ship with Windows. The biggest single win is usually trimming the apps that quietly launch at boot.

I rebuilt this guide around the exact order I work through on my own desktop and on friends’ laptops, starting with the changes that take seconds and moving toward the heavier ones only if you still need them.

Quick Answer

To speed up a slow Windows 11 PC, open Task Manager (Ctrl + Shift + Esc), select the Startup apps tab, and disable programs you do not need at boot. Then clear disk space with Storage Sense, install pending Windows updates, and run a malware scan. Those four steps deliver the biggest gain in minutes.

Start at the top of this list and stop as soon as your PC feels responsive again.

Why is my Windows 11 PC running slow?

Before changing anything, it helps to know what is dragging your machine down. When I diagnose a slow PC, the cause almost always lands in one of these buckets:

  • Too many startup programs draining resources at boot
  • Low disk space on your C: drive
  • Outdated Windows or driver updates
  • Background apps quietly consuming CPU and RAM
  • Malware running hidden processes
  • A fragmented or aging hard drive, especially on HDDs
  • Insufficient RAM for your daily workload

The first time I helped my brother with his laptop, the culprit was eleven startup apps he had never noticed. Once I matched the symptom to the cause, the right fix was obvious.

Identify which bucket fits your symptoms and the correct fix below becomes clear.

How do I disable startup programs and power settings?

These are the changes I always make first because they cost nothing and take under two minutes combined.

Disable startup programs

Startup programs are the single biggest cause of slow boot times. Many apps add themselves to your startup list without ever asking.

  1. Press Ctrl + Shift + Esc to open Task Manager.
  2. Click the Startup apps tab.
  3. Right-click any program you do not need at boot and select Disable.

I disable things like Spotify, Discord, Teams, and OneDrive here; they still open normally when I launch them by hand. If your PC is specifically slow to boot, my guide on how to speed up Windows 11 boot time goes deeper.

Switch to a high performance power plan

Windows 11 defaults to a “Balanced” plan that throttles your CPU to save energy. High Performance unlocks its full speed.

  1. Press Windows + R, type powercfg.cpl, and press Enter.
  2. Click Show additional plans.
  3. Select High Performance.

This helps most on desktops, where power draw is not a concern.

Disabling startup apps and choosing High Performance is the fastest, lowest-risk speed boost available.

How do I free up disk space and trim visual effects?

A nearly full drive and heavy animations both tax an older machine more than people expect.

Free up disk space with Storage Sense

When your C: drive is nearly full, Windows 11 performance drops noticeably. Storage Sense automates the cleanup.

  1. Go to Settings → System → Storage.
  2. Toggle Storage Sense to On.
  3. Click Run Storage Sense now to clear temporary files immediately.

You can also search Disk Cleanup in Start for a one-time pass. For a fuller walkthrough, see my guide on how to free up disk space on Windows 11.

Turn off visual effects

Windows 11 animations and transparency look polished but cost real processing power on slower hardware.

  1. Search for Adjust the appearance and performance of Windows in Start and open it.
  2. Select Adjust for best performance to switch every effect off at once.
  3. Click Apply.

Clearing disk space and cutting animations frees both storage and CPU cycles your PC can put toward real work.

How do I update, scan, and stop background apps?

Outdated files, hidden malware, and chatty background apps quietly steal performance you paid for.

Install Windows and driver updates

  1. Go to Settings → Windows Update and click Check for updates.
  2. For drivers, right-click Start → Device Manager.
  3. Right-click a device → Update driver → Search automatically.

If updates themselves stall, see my guide on how to fix Windows Update not working.

Run a malware scan

Viruses and spyware silently consume CPU and RAM. The built-in Windows Security handles this for free.

  1. Open Windows Security from Start.
  2. Go to Virus & threat protection → Quick scan.
  3. For a deeper pass, choose Scan options → Full scan.

Microsoft’s own performance tips for Windows back up this updates-and-scan routine.

Disable background apps

  1. Go to Settings → Apps → Installed apps.
  2. Click the three-dot menu next to an app → Advanced options.
  3. Under Background apps permissions, select Never.

Keeping the system patched, scanned, and free of idle background apps removes the slowdowns you cannot see.

How do I find and end resource-hungry processes?

Task Manager shows exactly what is eating your CPU and memory in real time.

  1. Open Task Manager (Ctrl + Shift + Esc).
  2. Click the CPU or Memory column header to sort by usage.
  3. Right-click an unnecessary app → End task.

I avoid ending anything named “System,” “svchost.exe,” or anything I do not recognize, and only close apps I know. If one process constantly pins your processor, see my fix for Windows 11 CPU usage at 100%.

Sorting Task Manager by usage reveals the single app most responsible for the lag.

Which deeper tweaks help an aging PC?

If the quick wins are not enough, these heavier adjustments target older hardware specifically. The table shows where each fits best.

Tweak Best for Risk level
Adjust virtual memory Low-RAM PCs that stutter under load Medium
Enable Fast Startup Slow shutdown-to-boot cycles Low
Defragment an HDD Spinning hard drives only Low

Adjust virtual memory

When RAM runs low, Windows borrows drive space as virtual memory. Setting it manually can smooth out stutters.

  1. Open Adjust the appearance and performance of Windows.
  2. Go to the Advanced tab → Virtual memory → Change.
  3. Uncheck Automatically manage, set Initial size to 1.5× your RAM (12,288 MB for 8 GB) and Maximum size to 3× your RAM.

Enable Fast Startup

  1. Go to Control Panel → Power Options → Choose what the power buttons do.
  2. Click Change settings that are currently unavailable.
  3. Check Turn on fast startup and click Save changes.

Defragment an HDD (never an SSD)

On a spinning hard drive, fragmentation slows reads and writes over time. Never defragment an SSD; Windows 11 handles SSD optimization (TRIM) automatically, and defragging shortens an SSD’s life.

  1. Search Defragment and Optimize Drives in Start.
  2. Select your HDD and click Optimize.

These deeper tweaks pay off most on older, low-RAM machines with traditional hard drives.

When is a hardware upgrade worth it?

If software fixes do not fully solve it, hardware is the final frontier and the most impactful change you can make.

  • RAM: 8 GB is the practical minimum for Windows 11; 16 GB is ideal for smooth multitasking.
  • SSD: swapping an HDD for an SSD cut my own boot time from over 60 seconds to under 10 and made everything feel instant.

An SSD or RAM upgrade is the surest fix once free tweaks run out, and it often adds years of life to an old machine.

What mistakes should I avoid when speeding up Windows 11?

  • Disabling antivirus to “free up resources.” Fix: leave Windows Security on; it is lightweight and protects you.
  • Skipping Windows updates. Fix: install them, since they often carry performance patches.
  • Installing third-party “PC booster” apps. Fix: skip them; most are bloatware, and Windows already has every tool you need.
  • Defragmenting an SSD. Fix: never do it; let Windows run TRIM automatically.
  • Ending random system processes. Fix: close only apps you recognize, and run chkdsk if you suspect disk errors.

Avoiding these five traps keeps your speed-up safe, so you gain performance without breaking anything.

Frequently Asked Questions

Why is my Windows 11 PC slow after a recent update?

It is usually temporary: updates run background indexing and configuration right after installing. For example, after a recent feature update my own PC dragged for about 40 minutes, then returned to normal once I restarted. If it persists, check Settings → Windows Update → Update history.

How much RAM do I need for Windows 11 to run smoothly?

8 GB is the realistic minimum, and 16 GB is strongly recommended for multitasking. Microsoft lists 4 GB as the floor, but when I tested an old 4 GB laptop, opening a browser and one app already maxed it out.

Will resetting Windows 11 make my PC faster?

Yes, a reset clears accumulated junk, bloatware, and corrupted files. When I reset a friend’s three-year-old laptop with Settings → System → Recovery → Reset this PC and chose “Keep my files,” it booted like new while keeping her documents.

How do I check what is slowing down my Windows 11 PC?

Open Task Manager (Ctrl + Shift + Esc) and sort by the CPU, Memory, and Disk columns; anything consistently above 80% is a prime suspect. On my desktop this is how I caught a sync app pinning the disk and ended it on the spot.

Can I speed up Windows 11 without installing any software?

Absolutely; every fix here uses built-in tools. I cleaned up my own machine using only Task Manager, Storage Sense, Windows Security, and Power Options, with nothing downloaded.

Does disabling startup programs delete them from my PC?

No, it only stops them launching automatically at boot. The first time I disabled Spotify at startup I worried it was gone, but it opened normally the moment I clicked its icon.

Conclusion

A slow Windows 11 PC is almost always fixable for free. Start with the quick wins, then work down only as far as you need to.

Right now, open Task Manager (Ctrl + Shift + Esc), click the Startup apps tab, and disable every program you do not need at boot. It takes 60 seconds and noticeably speeds up your next startup.