' This code is a modified version of the code in: http://www.outlookcode.com/codedetail.aspx?id=1266
'
' Get default store (where rules live)
Set st = Application.Session.DefaultStore
' Get rules
Set myRules = st.GetRules
' Find the required rule by its name
' The code below assumes the rule name is: Forward Me
For Each rl In myRules
If rl.Name = "Forward Me" Then
rl.Execute ShowProgress:=True
Exit For
End If
Next