Disable clipboard history
- Single actionThis page belongs to a script, containing basic changes to achieve a task.
- Windows onlyThis script improves your privacy on Windows
-  Impact: MinimumSystem Functionality Loss Risk: Low
 This action improves privacy with minimal impact when you run the recommended script.
- Batch (batchfile)These changes use Windows system commands to update your settings.
-  Fully reversibleYou can fully restore this action (revert back to the original behavior) using this website. The restore/revert methods provided here can help you fix issues. 
Overview
This script deactivates the clipboard history feature in Windows, a feature that is enabled by default 1 2. Regularly, users copy sensitive data such as usernames and passwords to their clipboard, making clipboard history valuable to attackers for gathering information for post-exploitation activities like lateral movement.
Microsoft introduced clipboard history in the Windows 10 October 2018 Update 1, offering enhanced functionality, including multi-device sync and customizable history management 1. Despite these benefits, clipboard history poses several security risks:
- Plain Text Storage: Clipboard data is stored unencrypted, making it vulnerable to access by malicious applications 3.
- Persistent Memory: The data remains in memory until overwritten or the machine restarts, exposing it to unauthorized access by other users or malware 3.
- Process Accessibility: Most running processes and applications can access clipboard data, increasing the risk if any are malicious 3.
- Open Network Threats: Malicious website scripts could potentially access clipboard data, leading to data theft 3.
- Windows Clipboard History: Stores the last 25 copied text and image items, which could include sensitive information 3.
- Increased Attack Surface: Clipboard history is susceptible to exploitation by malware that silently accesses and logs clipboard data 3.
Microsoft's privacy statement also indicates that clipboard data could be used for marketing and advertising purposes 4.
Given these risks, especially when handling sensitive data like passwords or credit card numbers 5, it is advisable for users concerned about security to disable clipboard history to safeguard their privacy.
This script modifies Windows Registry keys to turn off clipboard history and sync features:
- HKCU\Software\Microsoft\Clipboard!EnableClipboardHistory: Disables the local clipboard history for the current user 6 7 8.
- HKLM\SOFTWARE\Policies\Microsoft\Windows\System!AllowClipboardHistory: Disables the policy for storing clipboard contents 2 9.
Sources
- Copy and paste across Windows 10 devices using cloud clipboard. Windows Community. community.windows.com. (2021).
 Original: https://community.windows.com/en-us/stories/cloud-clipboard-windows-10
 Archived: https://web.archive.org/web/20210619004804/https://community.windows.com/en-us/stories/cloud-clipboard-windows-10
- Experience Policy CSP - Windows Client Management. Microsoft Learn. learn.microsoft.com. (2024).
 Original: https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-experience
 Archived: https://web.archive.org/web/20240119153212/https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-experience#allowclipboardhistory
- Is the Windows Clipboard Function, History or Sync Secure. ghostvolt.com. (2024).
 Original: https://ghostvolt.com/blog/Is-the-Windows-Clipboard-Function-History-or-Sync-Secure.html
 Archived: https://web.archive.org/web/20240119151846/https://ghostvolt.com/blog/Is-the-Windows-Clipboard-Function-History-or-Sync-Secure.html
- Microsoft Privacy Statement – Microsoft privacy. privacy.microsoft.com. (2023).
 Original: https://privacy.microsoft.com/en-US/privacystatement
 Archived: https://web.archive.org/web/20231006103250/https://privacy.microsoft.com/en-US/privacystatement
- Disable Clipboard History · Issue #247 · undergroundwires/privacy.sexy · GitHub. github.com. (2024).
 Original: https://github.com/undergroundwires/privacy.sexy/issues/247
 Archived: https://web.archive.org/web/20240119160347/https://github.com/undergroundwires/privacy.sexy/issues/247
- Enable or Disable Clipboard History in Windows 11 Tutorial. Windows 11 Forum. www.elevenforum.com. (2024).
 Original: https://www.elevenforum.com/t/enable-or-disable-clipboard-history-in-windows-11.973
 Archived: https://web.archive.org/web/20240119153118/https://www.elevenforum.com/t/enable-or-disable-clipboard-history-in-windows-11.973/
- How to: Enable and Use Clipboard History on Windows 10. ITechBrand. itechbrand.com. (2024).
 Original: https://itechbrand.com/how-to-enable-and-use-clipboard-history-on-windows-10
 Archived: https://web.archive.org/web/20240119153113/https://itechbrand.com/how-to-enable-and-use-clipboard-history-on-windows-10/
- SharpClipHistory. WithSecure™ Labs. labs.withsecure.com. (2024).
 Original: https://labs.withsecure.com/tools/sharpcliphistory
 Archived: https://web.archive.org/web/20240119153250/https://labs.withsecure.com/tools/sharpcliphistory
- Allow Clipboard History. admx.help. (2024).
 Original: https://admx.help
 Archived: https://web.archive.org/web/20240119153231/https://admx.help/?Category=Windows_10_2016&Policy=Microsoft.Policies.OSPolicy::AllowClipboardHistory
Apply Now
Choose one of three ways to apply:
Download script
Download and run the script directly- No app needed
- Offline usage
- Easy-to-apply
- Free
- Open-source
Help
How to apply or restore "Disable clipboard history" using script
- ≈ 2 min to complete
- Tools: Web Browser
- Difficulty: Simple
- ≈ 5 instructions
- 1DownloadDownload the script file by clicking on the button above.
 Use button above to restore changes.
- 2Keep the fileIf warned by your browser, keep the file.
- 3OpenOpen the downloaded file.
- 4ExitOnce it's done, press any key to exit the window.
- 5RestartRestart your computer for all changes to take effect.
Apply with privacy.sexy
Guided, automated application with safety checks- Recommended for most users
- Includes safety checks
- Free
- Open-source
- Popular
- Offline/Online usage
Help
How to apply or restore "Disable clipboard history" using privacy.sexy
- ≈ 3 min to complete
- Tools: privacy.sexy
- Difficulty: Simple
- ≈ 4 instructions
- 2Choose script- Search for the script name: Disable clipboard history
- Check the script by clicking on the checkbox.
 
- 3RunClick on ▶️ Run button at the bottom of the page.This button only appears on desktop version (recommended). On browser, use 💾 Save button. 
- Apply
- Revert
:: Set the registry value: "HKCU\Software\Microsoft\Clipboard!EnableClipboardHistory"
PowerShell -ExecutionPolicy Unrestricted -Command "$registryPath = 'HKCU\Software\Microsoft\Clipboard'; $data =  '0'; reg add 'HKCU\Software\Microsoft\Clipboard' /v 'EnableClipboardHistory' /t 'REG_DWORD' /d "^""$data"^"" /f"
:: Set the registry value: "HKLM\SOFTWARE\Policies\Microsoft\Windows\System!AllowClipboardHistory"
PowerShell -ExecutionPolicy Unrestricted -Command "$registryPath = 'HKLM\SOFTWARE\Policies\Microsoft\Windows\System'; $data =  '0'; reg add 'HKLM\SOFTWARE\Policies\Microsoft\Windows\System' /v 'AllowClipboardHistory' /t 'REG_DWORD' /d "^""$data"^"" /f"
Ijo6IERlbGV0ZSB0aGUgcmVnaXN0cnkgdmFsdWUgXCJIS0NVXFxTb2Z0d2FyZVxcTWljcm9zb2Z0XFxDbGlwYm9hcmQhRW5hYmxlQ2xpcGJvYXJkSGlzdG9yeVwiXG5Qb3dlclNoZWxsIC1FeGVjdXRpb25Qb2xpY3kgVW5yZXN0cmljdGVkIC1Db21tYW5kIFwicmVnIGRlbGV0ZSAnSEtDVVxcU29mdHdhcmVcXE1pY3Jvc29mdFxcQ2xpcGJvYXJkJyAvdiAnRW5hYmxlQ2xpcGJvYXJkSGlzdG9yeScgL2YgMj4kbnVsbFwiXG46OiBEZWxldGUgdGhlIHJlZ2lzdHJ5IHZhbHVlIFwiSEtMTVxcU09GVFdBUkVcXFBvbGljaWVzXFxNaWNyb3NvZnRcXFdpbmRvd3NcXFN5c3RlbSFBbGxvd0NsaXBib2FyZEhpc3RvcnlcIlxuUG93ZXJTaGVsbCAtRXhlY3V0aW9uUG9saWN5IFVucmVzdHJpY3RlZCAtQ29tbWFuZCBcInJlZyBkZWxldGUgJ0hLTE1cXFNPRlRXQVJFXFxQb2xpY2llc1xcTWljcm9zb2Z0XFxXaW5kb3dzXFxTeXN0ZW0nIC92ICdBbGxvd0NsaXBib2FyZEhpc3RvcnknIC9mIDI+JG51bGxcIiI=
Help
How to apply or restore "Disable clipboard history" using commands
- ≈ 2 min to complete
- Tools: Command Prompt
- Difficulty: Medium
- ≈ 3 instructions
- 1Open Command PromptOpen Command Prompt as Administrator.
- 2Copy codeCopy the code:
- 3Paste & runPaste the commands into Command Prompt and press Enter to run.Some changes require a system restart to take effect 
Similar Guides
Wider Goal
Guides below includes this guide to achieve a wider goal.See other more general settings that includes this one as one of its actions.These plans combine multiple privacy settings, including this one, for stronger protection.
- Disable clipboard data collection
- Security improvements
This category includes scripts that focus on disabling various aspects of clipboard data collection in Windows. The clipboard is a critical component of ...
This category encompasses a range of scripts designed to improve the security of your system by enforcing security best practices. These scripts help pro...
Same Goal
Other guides in Disable clipboard data collection See settings that are in the same category as this guide.Using other actions in the same category may help you achieve your goal better.
About the Creators
These people have authored this documentation and written its scripts:
Reviewed By
This guide has undergone comprehensive auditing and peer review:- Expert review by undergroundwires- Verified technical accuracy and editorial standards
- Assessed system impact and user privacy risks
- Audited and verified using automated security tests
 
- Public review by large community- Privacy enthusiasts and professionals peer-reviewed
- Millions of end-users tested across different environments
- Audited and verified using third-party security software
 
History
We continually monitor our guides, their impact and other potential privacy options. We update our guides when new information becomes available. On every update, we publicly store who made the change, what has been changed, why the change was made and when the change was made.