Const HOTKEY = "" 'hotkey, needs to be lowercase. special keys: SHIFT: + CTRL: ^ ALT: %. example: CTRL+ALT+L would be ^%l
Const DELAY = 0 'delay in seconds before hotkey gets executed

WScript.Sleep DELAY * 1000
Set sh = CreateObject("WScript.Shell")
sh.SendKeys HOTKEY
