GPO tool

Group Policy made searchable

A free ADMX browser or comparison tool for IT administrators. Search policies, find registry keys, and see exactly what each setting writes to the Windows Registry. Or compare two GPO backups to see exactly what has changed between them.

Select a product
  • Select a category.

Do not allow Clipboard redirection

This policy setting specifies whether to prevent the sharing of Clipboard contents (Clipboard redirection) between a remote computer and a client computer during a Remote Desktop Services session.

You can use this setting to prevent users from redirecting Clipboard data to and from the remote computer and the local computer. By default, Remote Desktop Services allows Clipboard redirection.

If you enable this policy setting, users cannot redirect Clipboard data.

If you disable this policy setting, Remote Desktop Services always allows Clipboard redirection.

If you do not configure this policy setting, Clipboard redirection is not specified at the Group Policy level.

Registry Information

VendorMicrosoft
ProductTerminalserver Server
CategoryTS REDIRECTION
Applies toUser Configuration
Supported onWindows Server2008
Registry Key[HKCU]SOFTWAREPoliciesMicrosoftWindows NTTerminal Services
Value NamefDisableClip
TypeREG_DWORD
Enabled value1
Disabled value0

Registry File (.reg)

Windows Registry Editor Version 5.00

; Enable the policy
[HKEY_CURRENT_USERSOFTWAREPoliciesMicrosoftWindows NTTerminal Services]
"fDisableClip"=dword:00000001

; Disable the policy
[HKEY_CURRENT_USERSOFTWAREPoliciesMicrosoftWindows NTTerminal Services]
"fDisableClip"=dword:00000000

PowerShell

# Enable the policy
Set-ItemProperty -Path "HKCU:SOFTWAREPoliciesMicrosoftWindows NTTerminal Services" -Name "fDisableClip" -Value 1 -Type DWord

# Disable the policy
Set-ItemProperty -Path "HKCU:SOFTWAREPoliciesMicrosoftWindows NTTerminal Services" -Name "fDisableClip" -Value 0 -Type DWord