Getting Rules from an exchange account configured in Outlook is pretty easy if we understand the hierarchy of the API. I banged my head for 2 days to get the exact function and attributes to get them. Keeping it here hoping that it will help someone who are searching for the same. Dim olRules As Outlook.Rules = Globals.ThisAddIn.Applicati... For Each olRule As Outlook.Rule In olRules If olRule.Conditions.From.Reci... > 0 Then ' CONDITION: FROM EMAIL Dim exUser ......