0X0000058A

Fix ERROR_CLIPBOARD_NOT_OPEN (0x0000058A) in Windows 10/11

Windows Errors Intermediate 👁 0 views 📅 May 26, 2026

Your thread can't access the clipboard because it wasn't opened first. This happens with clipboard managers or automation scripts. Quick fix: restart the app or clear clipboard history.

What is ERROR_CLIPBOARD_NOT_OPEN?

You're trying to paste or copy, and Windows spits back error 0x0000058A: "Thread does not have a clipboard open." I've seen this mostly with clipboard managers like Ditto, ClipClip, or even custom PowerShell scripts that call Get-Clipboard or Set-Clipboard without first opening the clipboard handle.

Here's the kicker: Windows requires any thread to explicitly open the clipboard before reading or writing to it. Some apps — especially those written in .NET or AutoHotkey — forget to call OpenClipboard(). The fix is usually simple, but when it's a system-level glitch, you'll need to dig into the registry.


The 30-Second Fix: Restart the Offending App

This sounds stupid, I know. But I can't count how many times a quick restart fixed clipboard errors for me. The app likely lost its clipboard handle after a crash or a sleep/wake cycle.

  1. Close the app showing the error. Don't just minimize it — close it entirely.
  2. Reopen it and try the clipboard operation again.

If you're using a clipboard manager, try right-clicking its tray icon and selecting "Exit" or "Quit." Then relaunch it from Start. If that works, you're done. If not, move to the next step.


The 5-Minute Fix: Clear Clipboard History and Reset Clipboard Service

Windows 10 and 11 have a built-in clipboard history feature (Win+V). Sometimes it gets corrupted or the service hangs. Let's nuke it clean.

Step 1: Turn off clipboard history

  1. Press Win + I to open Settings.
  2. Go to System > Clipboard.
  3. Toggle Clipboard history off.
  4. Scroll down and click Clear clipboard data.

Step 2: Restart the clipboard service

This step is the one most people skip. But I've seen it fix the error instantly.

  1. Press Win + R, type services.msc, and hit Enter.
  2. Scroll down to Clipboard User Service (or cbdhsvc on older builds).
  3. Right-click it and select Restart.

If you can't find the service, don't panic — it's not present in all Windows versions. Instead, open Task Manager (Ctrl+Shift+Esc), go to the Details tab, find cbdhsvc.exe, right-click, and End task. Windows will restart it automatically.

Step 3: Re-enable clipboard history

Go back to Settings > System > Clipboard and turn clipboard history back on. Try your copy/paste operation. If the error persists, it's time for the big guns.


The 15+ Minute Fix: Registry Edit to Force Clipboard Open

This is for the stubborn cases where a third-party app or a broken Windows update has corrupted the clipboard's internal state. Back up your registry first — seriously, don't skip this.

Step 1: Export your registry

  1. Press Win + R, type regedit, and hit Enter.
  2. In Regedit, click File > Export.
  3. Choose a location, name it something like clipboard_backup.reg, and make sure Export range is set to All. Click Save.

Step 2: Navigate to the clipboard-related key

Go to:

HKEY_CURRENT_USER\Software\Microsoft\Clipboard

Step 3: Delete or modify the problematic value

Look for a DWORD called ClipboardRetryTimeout or ClipboardThreadRetry — you might not have one, but if you do, delete it. Then create a new DWORD:

  • Right-click in the right pane, select New > DWORD (32-bit) Value.
  • Name it ClipboardOpenTimeout.
  • Set its value to 0 (decimal).

This tells Windows to never wait for a clipboard open — it forces immediate access. Some apps (like older versions of AutoHotkey) rely on this being present.

Step 4: Delete clipboard history cache

Still in Regedit, navigate to:

HKEY_CURRENT_USER\Software\Microsoft\Clipboard\History

Delete everything inside that key (but not the key itself). This clears any corrupted clipboard data stored by the cloud clipboard sync.

Step 5: Reboot and test

Restart your PC. Open the app that was throwing error 0x0000058A. If it still happens, you may have a deeper issue — like a buggy clipboard manager that's not releasing handles. Try temporarily disabling any clipboard manager you have (Ditto, ClipClip, 1Clipboard, etc.) and test again.


When to Call It Quits and Reinstall

If you've done all three steps and the error still shows up, it's almost certainly a corrupted system file. Run an SFC scan:

  1. Open Command Prompt as Administrator.
  2. Type sfc /scannow and hit Enter.
  3. Let it run — this can take 15-20 minutes.

If SFC finds integrity violations but can't fix them, run DISM /Online /Cleanup-Image /RestoreHealth next. After that, reboot and test.

Still broken? At this point, I'd consider a Windows repair install using the Media Creation Tool. But honestly, that's overkill for 90% of clipboard errors. The steps above will get you there.

Was this solution helpful?