Hi, you can block this key combo by using AutoHotKey. AutoHotKey works with scripts so you have to create a script to use it.
Download [
AutoHotKey] from the blue/white button on page and install it.
Open Notepad and paste the following 4 lines in it:
Code:
; Shortcut for Ctrl+Win+D
^#D::
; Do nothing for this key, just return. This essentially blocks it.
Return
Save the file as BlockKey.ahk and it's important to have the .ahk on the end.
Double click on the file to run it in AutoHotKey.
You will see a green "H" icon in your tray (near the clock) showing you that the script is now running.
The Ctrl+Win+D should now be blocked.
You can close the script at any time by right clicking on the tray icon and choosing Exit.
You can...