Docking Station Not Charging Laptop Windows 11 Fix [2026]
Quick Answer: Your docking station isn't charging because USB-C Power Delivery (PD) negotiation failed between the dock and laptop. Disable USB selective suspend, update Thunderbolt drivers, and ensure your dock provides enough wattage (65W+ for most laptops, 100W+ for gaming laptops).
Symptoms
- Dock connects and peripherals work, but laptop shows "Not charging"
- Charging icon appears briefly then disappears
- Laptop charges with direct AC adapter but not through dock
- "Slow charger connected" or "USB device needs more power" warnings
- Charging works when laptop is off/sleep but not when running
- Charging stops when running intensive apps (games, video editing)
Why This Happens (Root Cause)
USB-C Power Delivery is a complex negotiation:
-
PD Profile Mismatch: USB-C PD uses "profiles" (5V@3A, 9V@3A, 15V@3A, 20V@3A/5A). If dock and laptop don't agree on a profile, power delivery fails. Windows 11's PD stack is stricter than Windows 10's.
-
Power Budget Competition: Thunderbolt/USB4 docks share a single USB-C cable for video, data, AND power. If displays use too much bandwidth (4K@144Hz), less power is available for charging.
-
BIOS Charging Threshold: Many business laptops (Lenovo, Dell, HP) have "battery conservation mode" that stops charging at 80% to extend battery life. This appears as "not charging" even though it's intentional.
-
USB Selective Suspend: Windows 11 powers down USB ports to save battery, cutting PD negotiation. The dock thinks the laptop disconnected and stops supplying power.
How to Diagnose (Manual)
Check 1: Verify USB-C Power Delivery Contract
Get-PnpDevice -Class Battery | Select-Object Name, Status
Get-WmiObject -Namespace root\wmi -Class BatteryStatus | Select-Object PowerOnline, Charging
Expected output if charging:
PowerOnline : True
Charging : True
Check 2: Check Power Delivery Wattage
powercfg /batteryreport /output "%TEMP%\battery-report.html"
start "%~TEMP%\battery-report.html"
Look for: "CHARGE RATE" in the report. Should show positive watts (e.g., 45,000 mW = 45W charging).
Check 3: Inspect USB Power Settings
Get-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\2a737441-1930-4402-8d77-b2bebba308a3\48e6b7a6-50f5-4782-a5d4-53bb8f07e226" -Name "Attributes"
Value 2 = USB selective suspend is hidden in UI but active. You need to disable it.
Step-by-Step Fix
Method 1: Disable USB Selective Suspend (Recommended)
- Settings → System → Power & battery
- Click Additional power settings (if available) OR:
- Control Panel → Hardware and Sound → Power Options
- Click Change plan settings → Change advanced power settings
- Expand USB settings → USB selective suspend setting
- Set On battery and Plugged in to Disabled
- Click Apply → OK
Method 2: Update Thunderbolt/USB4 Drivers
- Device Manager → System devices
- Find "Intel Thunderbolt Software Device" or "USB4 Device"
- Right-click → Update driver
- Choose Search automatically for drivers
- Also check "Universal Serial Bus controllers" for "USB Composite Device" updates
Method 3: Check Dock Power Capacity
Verify your dock can actually charge your laptop:
| Laptop Type | Minimum Dock Power Needed | |-------------|---------------------------| | Ultrabook (13-14") | 45-65W | | Business laptop (15") | 65-90W | | Gaming/Creator (15-16") | 100W+ | | Workstation (17") | 130W+ (may need proprietary dock) |
If your dock only provides 45W and your laptop needs 65W, it won't charge while running.
Method 4: Disable Battery Conservation Mode
For Lenovo:
- Open Lenovo Vantage → Device → Power
- Turn OFF "Conservation Mode" (stops charging at 80%)
For Dell:
- Open Dell Power Manager → Battery Information
- Change to "Primarily AC use" or disable "Stop charging at 80%"
For HP:
- Open HP Command Center → Battery
- Disable "Battery Health Manager"
Method 5: Registry Fix for Persistent PD
Create a .reg file:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\2a737441-1930-4402-8d77-b2bebba308a3\48e6b7a6-50f5-4782-a5d4-53bb8f07e226]
"Attributes"=dword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UcmCx\Parameters]
"PdoPowerRequirement"=dword:00000000
What this does: Exposes USB selective suspend in UI and prevents USB-C PD power-down.
Method 6: Hard Reset PD Negotiation
# Run as Administrator - simulates cable re-plug without physically unplugging
Get-PnpDevice -Class USB | Where-Object {$_.FriendlyName -like "*Hub*"} | Disable-PnpDevice -Confirm:$false
Start-Sleep -Seconds 3
Get-PnpDevice -Class USB | Where-Object {$_.FriendlyName -like "*Hub*"} | Enable-PnpDevice -Confirm:$false
How Againly Diagnoses This Automatically
Againly runs check_power_management in 0.7 seconds and detects:
- USB-C PD contract status (power negotiated vs failed)
- Battery charge rate from power reports
- USB selective suspend settings blocking PD
- Charging threshold/conservation mode status
- Dock wattage vs laptop requirements
Instead of guessing, it shows: "USB-C PD negotiation failing — dock provides 45W but laptop requires 65W. Disabling selective suspend and recommending dock upgrade."
[CTA: Try free diagnosis]
Prevention
- Buy docks with 20-30% more power than your laptop needs — 65W laptop needs 90W+ dock for charging while running
- Use Thunderbolt 4/USB4 cables — USB 2.0 cables can't carry PD properly
- Don't use HDMI adaptors on dock — they steal power budget from charging
- Keep laptop firmware updated — BIOS updates fix PD compatibility
FAQ
Q: Why does my dock charge my phone but not my laptop? A: Phones use 5V@3A (15W). Laptops need 15V or 20V at 3A-5A (45-100W). Different PD profiles.
Q: Will a 100W dock charge any laptop? A: Most laptops yes, but some gaming laptops need 150W+ and require proprietary barrel-jack chargers.
Q: Why does charging stop when I run games? A: Your GPU draws more power than the dock provides. The laptop stops charging to prioritize running the game.
Q: Is this a Windows 11 bug? A: No — it's PD negotiation complexity. Windows 11 is stricter about safety compliance than Windows 10.
Related: Sleep Mode Not Working Windows 11 Fix | Laptop Fan Loud When Doing Nothing Fix
