Created
October 25, 2020 22:57
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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