Shortcut key for delete

16,395

Solution 1

for temporarily delete use right-click key (on keyboard enter image description here) and press D and for permanently deleting press right-click key then press Shift+D

Done! you don't need scripting :)

Solution 2

Use AutoHotkey with a script containing:

Del::^X

where ^X is read Ctrl+x. See the format here.

Share:
16,395

Related videos on Youtube

vamsi
Author by

vamsi

Updated on September 18, 2022

Comments

  • vamsi
    vamsi over 1 year

    My delete key is not working and I feel happy if I can create shortcut for both temporarily and permanently delete files using other keys.Can any one help me. Thanks in advance

    • Eric F
      Eric F over 9 years
      You can always use the "On screen keyboard" built into windows, assuming that is what you are using.
    • Ƭᴇcʜιᴇ007
      Ƭᴇcʜιᴇ007 over 9 years
      possible duplicate of How can I remap a keyboard key?