This repository was archived by the owner on May 28, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ SetDEPOptOut # SetDEPOptIn
6666DisableUpdateRestart # EnableUpdateRestart
6767# DisableHomeGroups # EnableHomeGroups
6868DisableSharedExperiences # EnableSharedExperiences
69+ # EnableClipboardHistory # DisableClipboardHistory
6970DisableRemoteAssistance # EnableRemoteAssistance
7071EnableRemoteDesktop # DisableRemoteDesktop
7172DisableAutoplay # EnableAutoplay
Original file line number Diff line number Diff line change @@ -1010,6 +1010,18 @@ Function EnableSharedExperiences {
10101010 Set-ItemProperty - Path " HKCU:\Software\Microsoft\Windows\CurrentVersion\CDP" - Name " RomeSdkChannelUserAuthzPolicy" - Type DWord - Value 1
10111011}
10121012
1013+ # Enable Clipboard History - Applicable since 1809
1014+ Function EnableClipboardHistory {
1015+ Write-Output " Enabling Clipboard History..."
1016+ Set-ItemProperty - Path " HKCU:\Software\Microsoft\Clipboard" - Name " EnableClipboardHistory" - Type DWord - Value 1
1017+ }
1018+
1019+ # Disable Clipboard History - Applicable since 1809
1020+ Function DisableClipboardHistory {
1021+ Write-Output " Disabling Clipboard History..."
1022+ Remove-ItemProperty - Path " HKCU:\Software\Microsoft\Clipboard" - Name " EnableClipboardHistory" - ErrorAction SilentlyContinue
1023+ }
1024+
10131025# Disable Remote Assistance - Not applicable to Server (unless Remote Assistance is explicitly installed)
10141026Function DisableRemoteAssistance {
10151027 Write-Output " Disabling Remote Assistance..."
You can’t perform that action at this time.
0 commit comments