Skip to content

Instantly share code, notes, and snippets.

View smt's full-sized avatar

Stephen Tudor smt

View GitHub Profile
@smt
smt / STOP_INSTALLING_OFFICE_ONLINE.ahk
Created October 25, 2020 22:57
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