Applescript that moves any set of Microsoft Outlook 2011 messages to the first iMap account and to a pre-defined folder within that imap account.
tell application "Microsoft Outlook"
set thisAccount to item 1 of imap accounts
set destFolder to folder "Hewlett-Packard"
set messageSet to current messages
repeat with currMsg in messageSet
move currMsg to destFolder
end repeat
end tell