Skip to content

Instantly share code, notes, and snippets.

@smt
Created October 25, 2020 22:57
Show Gist options
  • Save smt/d6bb88635d637e13989e55d6b0cbe8f2 to your computer and use it in GitHub Desktop.
Save smt/d6bb88635d637e13989e55d6b0cbe8f2 to your computer and use it in GitHub Desktop.
AutoHotkey script that disables the ANNOYING "feature" in Windows 10 that re-installs Office Online every time a user chords CTRL+SHIFT+ALT+WIN. Source: https://answers.microsoft.com/en-us/msoffice/forum/msoffice_other-msoffice_custom-msoversion_other/disable-office-on-line-ctrlshiftaltwin-shortcut/edfd9f4e-6a20-4ab7-9ddd-de0a62c3c646?auth=1
#HotkeyInterval 2000 ; This is the default value (milliseconds).
#MaxHotkeysPerInterval 200
#^!Shift::
#^+Alt::
#!+Ctrl::
^!+LWin::
^!+RWin::
Send {Blind}{vk07}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment