Skip to content

Instantly share code, notes, and snippets.

@spitfire05
Created April 6, 2017 18:54
Show Gist options
  • Save spitfire05/0fff48450b8a4f098169c06721e14cbd to your computer and use it in GitHub Desktop.
Save spitfire05/0fff48450b8a4f098169c06721e14cbd to your computer and use it in GitHub Desktop.
Script disabling annoying Alt+S shortcut in Outlook 365
$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
@chinaxiaohuilue
Copy link

Thank you very much for your script. It looks good

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment