Windows 1 V – Zwischenablage mehrfach Nutzen

Kategorien: Tags: , ,

Powershell zum aktivieren der Mehrfachablage:

Set-ItemProperty -Path HKCU:\Software\Microsoft\Clipboard -Name EnableClipboardHistory -Value 1

Alternativ wenn Registry nicht gesetzt:

New-ItemProperty -Path ‚HKCU:\Software\Microsoft\Clipboard‘ -Name EnableClipboardHistory -PropertyType DWord -Value 1 -Force