A possibility could be using VBA and the event Application_Startup() and
have that trigger a syncronization? I Haven't used VBA in outlook but I did
find the following example from the help:
Example
This Microsoft Visual Basic/Visual Basic for Applications example starts
synchronization of the user's second synchronization profile in response to
the user clicking a button on a form.
Private Sub Command1_Click()
Dim myOlApp As New Outlook.Application
Dim mySyncs As Outlook.SyncObjects
Set mySyncs = myOlApp.GetNamespace("MAPI").SyncObjects
Set mySyncObj = mySyncs.Item(1)
mySyncObj.Start
End Sub
Haven't tried it myself, and I'm not sure about the security issue (allowing
macros in outlook) , but it might be a possibility...
/JP