Just setup a new machine with Outlook on it. however, Alt+s does not sends emails anymore. in my previous machine, it used to send emails with simple ALT+S.
any tips around how to enable that ? i found a setting for ctrl+enter but have been used to ALT+S, so would appreciate if somebody can guide how to do it.
32 Answers
I had the same problem and after lots of searching not revealing anything I decided the problem must be local.
In my case it is a third-party app, Screenshot Capture, which when running in the system tray hijacks the Alt+S combo (even though it's not defined in Edit → Preferences → HotKeys and Shortcuts).
Closing and restarting the app returned Alt+S functionality to Outlook 2010.
You may find it's worth checking whether you have this or another application running which could be listening for the Alt+S shortcut and consuming it.
2If you cannot enable the hotkey, you can create one with AutoHotkey. When you press Alt-S, it will fire Ctrl-Enter. This way you won't have to change your behaviour.
The script:
#IfWinActive ahk_class rctrl_renwnd32 ; This is the code for the new message window and restricts the command to it
!s::SendInput ^{enter} ; When you press alt-s, send ctrl-enterInstall AutoHotkey, save the script as ah ahk-file with Notepad, put the script in the startup folder and you are good to go.
1