I'm looking for a command-line style way of opening a new note in Outlook 2007.

It'll be executed from a .bat script.

Basically, is there some switch on outlook.exe or similar that I can use to get a new note?

link|improve this question

57% accept rate
feedback

1 Answer

up vote 2 down vote accepted

From the Office command line switch reference:

/c messageclass

Creates a new item of the specified message class (Outlook forms or any other valid MAPI form).

Examples:

  • /c ipm.activity creates a Journal entry
  • /c ipm.appointment creates an appointment
  • /c ipm.contact creates a contact
  • /c ipm.note creates an e-mail message
  • /c ipm.stickynote creates a note
  • /c ipm.task creates a task

So this should do the trick

\Path\to\outlook.exe /c ipm.stickynote
link|improve this answer
perfect! thanks – Matt Feb 17 '10 at 11:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.