Last active
December 4, 2024 10:11
-
-
Save spitfire05/0fff48450b8a4f098169c06721e14cbd to your computer and use it in GitHub Desktop.
Script disabling annoying Alt+S shortcut in Outlook 365
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
# Run this with admin priviliges: | |
$path = "HKCU:\Software\Policies\Microsoft\Office\16.0\Outlook\DisabledShortcutKeysCheckBoxes"; New-Item $path -Force; New-ItemProperty -Path $path -Name "Alt+S" -Value "83,16" -PropertyType String |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you very much for your script. It looks good