Laptop Lid Close Not Triggering Sleep? Fix in 2 Steps

Hardware – RAM & MB Beginner 👁 12 views 📅 Jun 15, 2026

Lid close not sleeping? Usually a power plan setting or driver tweak. Here's how to fix it fast.

Quick answer: Check your power plan's lid close action (set to Sleep), then update or roll back your Intel Management Engine Interface driver. That fixes 90% of these cases.

I've seen this on maybe fifty laptops over the years. Client brings it in, says "I close the lid and it just stays on—battery's dead by morning." Nine times out of ten, it's either Windows got confused about what to do when the lid closes, or the Intel Management Engine driver (the chipset brain that tells the system to sleep) went sideways after a Windows update. Happens most often after a big feature update—Windows 11 22H2 caused a wave of these calls for me.

Why This Happens

Your laptop's lid has a magnetic sensor that triggers a mechanical switch. When you close it, the system reads that signal and checks the power plan setting for lid close action. If that setting is wrong, corrupted, or overridden by a driver, nothing happens. The Intel Management Engine Interface (MEI) driver is the gatekeeper here—if it's buggy or outdated, it doesn't pass the "sleep now" message to Windows properly.

Also, some laptops have a BIOS setting that controls lid behavior separately. That'll override Windows every time. So we'll hit both angles.

Step-by-Step Fix

Step 1: Check and Reset Lid Close Action in Power Plan

  1. Open Control Panel > Hardware and Sound > Power Options.
  2. Click Choose what closing the lid does on the left.
  3. Under When I close the lid, set both "On battery" and "Plugged in" to Sleep.
  4. Click Save changes.
  5. Restart your laptop.

I had a client last month whose setting was stuck on "Do nothing" and the dropdown was grayed out. That's a registry corruption. In that case, run this as admin in Command Prompt:

powercfg /setacvalueindex SCHEME_CURRENT SUB_BUTTONS LIDACTION 1
powercfg /setdcvalueindex SCHEME_CURRENT SUB_BUTTONS LIDACTION 1
powercfg /setactive SCHEME_CURRENT

The value 1 means Sleep. 0 is Do Nothing, 2 is Hibernate, 3 is Shut Down. Run those three commands, then test.

Step 2: Fix the Intel Management Engine Interface Driver

If Step 1 didn't work, this is almost certainly the culprit.

  1. Open Device Manager (right-click Start > Device Manager).
  2. Expand System devices.
  3. Find Intel Management Engine Interface (might be called Intel MEI or Intel Management Engine).
  4. Right-click it > Properties > Driver tab.
  5. Click Roll Back Driver if it's enabled. If not, click Update Driver > Browse my computer > Let me pick.
  6. Choose an older driver from the list (often the one marked "Windows 10" or a date before your last update).
  7. Click Next, then restart.

If rollback isn't available, go to your laptop manufacturer's support site (Dell, HP, Lenovo, etc.) and download the Intel MEI driver specifically for your model. Don't let Windows Update install its version—that's often what broke it. Install the OEM driver manually.

Step 3: Check BIOS/UEFI Settings (Dell and HP mostly)

Reboot and tap F2 (or Del, F10—depends on brand) to enter BIOS.

  • Look for Power Management or Lid Switch settings.
  • Make sure Lid Close Action is set to Sleep or Suspend.
  • Save and exit.

I had a Dell Latitude 5490 that ignored Windows completely because the BIOS had its own lid override enabled. Once I flipped that, it slept like a baby.

Alternative Fixes If the Main Ones Fail

Disable Fast Startup

Fast Startup in Windows can mess with lid behavior. Turn it off:

  • Control Panel > Power Options > Choose what the power buttons do.
  • Click Change settings that are currently unavailable.
  • Uncheck Turn on fast startup.
  • Restart.

Check for Third-Party Power Management Software

Lenovo Vantage, HP Support Assistant, Dell Power Manager—these can override Windows settings. Open whichever app your laptop came with and check the lid close setting. I've seen Lenovo Vantage set "lid close = do nothing" silently after an update.

Registry Edit (Advanced)

If the powercfg commands didn't stick, you can force it via registry:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\User\PowerSchemes\

Navigate to your active power scheme GUID (run powercfg /getactivescheme to find it), then go to SUB_BUTTONS > LIDACTION. Set both DCSettingIndex and ACSettingIndex to 1. Reboot.

Prevention Tip

After you get this fixed, do this: pause Windows feature updates for 30 days (Settings > Windows Update > Advanced options). Feature updates have a habit of stomping on the Intel MEI driver. Wait a few weeks to see if others report lid issues before updating. Also, once a quarter, manually check your laptop manufacturer's site for an updated Intel MEI driver—don't rely on Windows Update for that chipset stuff.

If you've done all this and it still won't sleep when the lid closes, you've got a hardware issue—maybe the lid sensor itself is dead. That's rare, but I've seen it twice. Time for a repair shop.

Was this solution helpful?