🧰 AutoHotkey v2

Empty Recycle Bin Hotkey

Ctrl+Alt+Delete... no, Ctrl+Alt+R empties the Recycle Bin after a confirmation prompt, without opening it first.

By WindowsScripting.com · 444 B
EmptyRecycleBinHotkey.ahk
; ============================================================
; EmptyRecycleBinHotkey.ahk
;
; Ctrl+Alt+R empties the Recycle Bin after a confirmation prompt.
;
; Requirements: AutoHotkey v2 (https://www.autohotkey.com/)
; ============================================================

#Requires AutoHotkey v2.0

^!r::{
    result := MsgBox("Empty the Recycle Bin?", "Confirm", "YesNo Icon!")
    if (result = "Yes")
        FileRecycleEmpty()
}