Save attachments of new incoming mail automatically to a folder ######### PREREQUISITE ######### For outlook v14 / v15 / v16 or newer, you need to set the EnableUnsafeClientMailRules value in the registry then restart Outlook. Source: https://www.slipstick.com/outlook/rules/outlook-run-a-script-rules/ Outlook 2016 HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Security DWORD: EnableUnsafeClientMailRules Value: 1 Outlook 2013 HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Security DWORD: EnableUnsafeClientMailRules Value: 1 Outlook 2010 HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Security DWORD: EnableUnsafeClientMailRules Value: 1 ######### VBA ######### Source: https://www.extendoffice.com/documents/outlook/3747-outlook-auto-download-save-attachments-to-folder.html Add following VBA as a module in outlook. Remember that "Microsoft Scripting Runtime", "Microsoft Office 16.0 Object Library" and "Microsoft Outlook 16.0 Object Library" need to be enabled in VBA-Editor --> Tools --> References. Furthermore, Outlook needs to be set to allow to run macro's in Outlook --> Options --> Trust --> Trust Settings --> Macro Settings Anyway, here the code ... Public Sub SaveAttachmentsToDisk(MItem As Outlook.MailItem) Dim oAttachment As Outlook.Attachment Dim sSaveFolder As String sSaveFolder = "C:\TMP\my-folder-with-a-trailing-backslash\" For Each oAttachment In MItem.Attachments 'oAttachment.SaveAsFile sSaveFolder & oAttachment.DisplayName oAttachment.SaveAsFile sSaveFolder & Format(MItem.ReceivedTime, "yyyy-mm-dd hhmmss") & " - " & oAttachment.DisplayName Next End Sub ######### Set Up Mail Rules ######### Set up mail rules for (new) applicable mail as per normal, and select "run a script" [[now available due to registry edit. The option is more or less between the options 'mark it as read' and 'stop processing more rules']] This will do the trick. You can test it to manually run your mail rule on (a) certain (sub)folder(s). ######### Famous last words ######### And as confusing it is every time; Outlook rules daisy chain, in a cascade, so each email is processed against multiple rules. To answer your question, the "Stop Processing rules" step applies only to the current mail, which meets the required criteria. Any subsequent rule that might match that email will not be evaluated. that’s primarily what the message is telling you. The order of rules is important, and its logical that no rule can do anything more with an email once its been deleted, so once the rule is matched, it must either be the last one in the list, or the rules after it have to be skipped. All the rules still remain active though, and when a new email comes in, they will process it until either reaching the last rule, or hitting a stop. --- if you're using Exchange or Office 365), like sieve. This is really handy if you check your mail on your mobile app, or the outlook website, as they don't process rules at all. Unfortunately though, unlike sieve, it isn't super capable, and a lot of conditions generate a once-off warning saying this rule has a condition that the server cannot process, meaning, this rule will only work whenever you open Outlook on your PC But now this is where this warning kicks in. You've also asked it to stop processing more rules, remember? We know the server cannot run this rule: So how would the server know whether to run following rules? It doesn't and wont. Basically it's trying to warn you that none of the rules after this one will be ran at all on the server, even if they could. This mightn't affect you, so you may ignore it, but is a pretty important message if you: have auto reply rules or similar that need to happen immediately in response to emails and don't have your PC with outlook running 24/7 use mobile devices to do quick checks of your email, but receive a tonne of mail and rely on filtering into subfolders/deletion for these checks to actually be quick or use browsers as the mail client more often than not