- 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
| Vendor | Microsoft |
|---|---|
| Product | Terminalserver Server |
| Category | TS REDIRECTION |
| Applies to | User Configuration |
| Supported on | Windows Server2008 |
| Registry Key | [HKCU]SOFTWAREPoliciesMicrosoftWindows NTTerminal Services |
| Value Name | fDisableClip |
| Type | REG_DWORD |
| Enabled value | 1 |
| Disabled value | 0 |
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:00000000PowerShell
# 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 