Generate summary with AI

Your clipboard often stores more than just the last thing you copied. Over days or weeks, unpinned items can pile up, creating clutter and potentially exposing sensitive information. Knowing how to clear clipboard history, as well as how to enable or disable the feature entirely, helps you maintain control over your data.

Different situations call for different approaches, whether you’re using your personal device or managing multiple systems. In this blog we’ll explore practical ways to enable, disable, and clear clipboard data manually and programmatically so you can stay organized and secure.

Characteristics and practical constraints of clipboard history

Windows 11 clipboard history is a versatile productivity tool, but it operates within strict technical boundaries to maintain system performance. The system is designed as a high-speed temporary buffer, meaning it prioritizes efficiency over massive data retention.

  • Retained content types: It stores plain text, HTML code (useful for web developers), and images specifically in bitmap, PNG, or JPG formats.
  • Capacity limit: The history holds a maximum of 25 items. Once you copy the 26th item, the oldest unpinned entry is unceremoniously evicted to make room for the new one.
  • Item size cap: Individual items are strictly capped at 4MB. If you copy a high-resolution screenshot or a massive block of code that exceeds this size, it will not appear in the history.
  • Memory management: These limits are intentional by design to prevent system memory bloat, as the clipboard relies on RAM for its active session.

» Find out how to decrease RAM usage

System behavior and data volatility

In a standard Windows environment, clipboard history is volatile, and its data is treated differently depending on the power state of the computer.

  • Sleep and hibernate: Data is successfully retained through these states, allowing you to resume work and access your history exactly where you left off.
  • Logout and restart: A system purge occurs during a reboot or logout. To protect user privacy, Windows automatically discards all unpinned entries during these transitions.
  • Pinned items: Pinned items are the only exception; they are “tattooed” to the local storage and will survive power cycles, forced restarts, or manual clears.

Prerequisites for clipboard history

Clipboard history depends on your Windows version and build number. Older systems released before the late 2018 updates may not include the required architecture to support the feature. You can confirm compatibility directly through the About section in Windows Settings.

Your device supports clipboard history if it meets the following requirements:

  • Minimum OS: Windows 10 version 1809 (Build 17763) or newer.
  • Architecture: Both x86 and x64 systems are supported if the build requirement is met.
  • Windows Server: Windows Server 2019 or newer.

To check for the requirements, follow these steps:

1. Search “Settings” in your search bar and click “open”

a screenshot of the settings menu in windows 10

2. Click System and scroll down and select About

a screenshot of the system settings page with about highlighted

3. Locate the Windows specifications and Device specifications sections and check the Version, OS build, and System type details

a screenshot of About in the system's settings

If your version is older than 1809, the clipboard history feature will not be available on the system.

» Struggling? Start by identifying your motherboard make & model

Account and permissions checks

Your account type determines whether you can enable the feature for yourself or for an entire organization.

  • Local admin rights: While a standard user can toggle the feature for their own session, you need Local Administrator privileges to modify Registry keys or Group Policy settings that affect all users on the machine.
  • Microsoft ID vs. Entra ID: A standard local account can use history locally, but a Microsoft Account or Entra ID (Azure AD) is a prerequisite if you intend to use the cloud sync feature across multiple devices.

» Here’s the difference between Azure AD and Active Directory

How to manage clipboard history across your environment

Enabling or managing clipboard history involves different approaches depending on whether you are an individual user looking for convenience or an IT administrator enforcing security across a fleet. Here’s how to navigate these settings using Windows Settings, Group Policy, and the Windows Registry Editor.

Method 1: Windows Settings

This is the most direct and visual way to manage the feature. It’s designed for individual users who need a quick, accessible tool without touching the system’s “under-the-hood” configurations.

Follow these steps:

1. Search “Settings” in your search bar and click “open”

a screenshot of the settings menu in windows 10

2. Navigate to System > Clipboard

System > Clipboard

3. Locate the Clipboard history toggle and switch it to On

a screenshot of the system clipboard settings with history on

4. To verify it works, perform the “Win+V” litmus test. Pressing Windows Key + V should summon a floating window with your snippets. If disabled, this shortcut prompts a message stating history can’t be shown

Clipboard

Method 2: Group Policy Editor

The Group Policy Editor is the preferred tool for IT administrators who need to standardize settings across a department or a shared office environment. This method “locks” the setting so that local users cannot accidentally disable it (or enable it if security policies forbid it).

Follow these steps:

  1. Press Win + R, type gpedit.msc, and hit Enter
  2. Navigate to Computer Configuration > Administrative Templates > System > OS Policies.
  3. Double-click Allow Clipboard History or Allow Clipboard synchronization across devices
  4. Set to Enabled or Disabled based on your security needs

Did you know? Atera’s Group Policy Management allows you to deploy these GPO-style registry overrides across thousands of endpoints simultaneously. This ensures a consistent security baseline that local users can’t bypass, providing a “set and forget” peace of mind that competitors often struggle to replicate with the same level of granular automation.

» Make sure you know how to open Local Group Policy Editor

Method 3: Registry Editor

Registry Editor is the most technical method. It’s used primarily by advanced users to bypass UI bugs or by admins to automate settings via scripts when Group Policy isn’t available

Follow these steps:

1. Press Win + R, type regedit in the box, and press Enter

Win + R

2. In the left sidebar, follow this path: HKEY_CURRENT_USER\Software\Microsoft\Clipboard

Clipboard Key

3. Look in the right-hand pane for a value named EnableClipboardHistory

Clipboard Enable

Take note: If you don’t see it, right-click an empty space in the right pane, select New > DWORD (32-bit) Value, and name it exactly EnableClipboardHistory

New Key

4. Modify the value:

  • To enable: Double-click the entry and change the Value data to 1
  • To disable: Double-click the entry and change the Value data to 0
Value Data

5. To ensure Windows registers the change, restart your computer

» Here’s how to restart a remote computer using Windows

Remember: Registry changes are immediate and powerful. If a Group Policy is active on your computer, it will likely overwrite these manual edits every time the system refreshes.

For a more permanent solution across a large number of endpoints, using a centralized tool like Atera’s RMM platform allows you to manage and enforce these settings while checking for existing policy conflicts. This ensures your configurations remain consistent across the entire organization, preventing settings from reverting to their original state without warning.

» Check out these registry editor challenges and how to overcome them

How to clear clipboard history

Knowing how to clear clipboard history helps you remove sensitive or unnecessary data without disabling the feature completely. You can do this manually through Windows Settings or programmatically using PowerShell, depending on your needs.

Method 1: Windows Settings

This method is best for most users because it provides a quick and safe way to remove stored clipboard data without affecting system services or requiring administrative permissions.

Follow these steps:

1. Search “Settings” in your search bar and click “open”

a screenshot of the settings menu in windows 10

2. Click System and select Clipboard from the left menu

System > Clipboard

3. Scroll to the Clear clipboard data section and click the Clear button

Clear Data

Method 2: PowerShell

This method is more suitable for IT administrators or advanced users because it allows deeper control and can be used in scripts or troubleshooting scenarios by restarting the Windows clipboard service.

Follow these steps:

1. Search “PowerShell” in your search bar and select “Run as administrator”

Powershell

2. Copy and paste the following PowerShell commands:

Get-Service cbdhsvc* | Stop-Service -Force
Get-Service cbdhsvc* | Start-Service
PowerShell Scripts

By stopping and then starting the Clipboard User Service, you force Windows to wipe the temporary clipboard cache. This process purges all stored history and resets the clipboard subsystem, ensuring that any residual data is permanently cleared.

Did you know? Atera’s AI Copilot can help generate PowerShell scripts for tasks like clearing clipboard history. You don’t need to write the commands yourself; simply tell it something like, “I want to clear my clipboard history,” and it will create the script for you, ready to run on one or multiple devices. This makes managing clipboard data faster, safer, and easier to automate.

» Here’s our guide to running PowerShell commands on a remote computer

Clipboard management with Atera

Regularly clearing clipboard data helps protect sensitive information and keeps devices running efficiently. Using Windows Settings is quick for personal devices, while PowerShell commands give administrators deeper control by resetting the clipboard service when needed.

Atera’s RMM platform and Copilot simplify this process further by generating scripts and automating clipboard maintenance across multiple systems, making it easier to maintain organization and security consistently.

» Want to try it out? Get started with Atera

Frequently Asked Questions

Was this helpful?

Related Articles

How to check if a disk is MBR or GPT in Windows

Read now

How to enable or disable the Action Center in Windows 10 and 11

Read now

How to change file associations in Windows 10 and 11

Read now

How to fix the “vcruntime140.dll not found” error in Windows 11

Read now

Endless IT possibilities

Boost your productivity with Atera’s intuitive, centralized all-in-one platform