Outlook – How to open multiple windows when Outlook 2010 starts

calendarmicrosoft-outlookmicrosoft-outlook-2010

OS: Windows 7 64-bit App: Outlook 2010 32-bit Server: Exchange 2010

I'd like to modify Outlook's default startup behavior so that it shows both my Inbox and Calendar when I click my shortcut.

I use both of them all day, and know how to just right-click the calendar and select "Open in New Window." I run my inbox on one screen and my calendar on another.

I also configured my calendar to be the folder that opens by default when I start Outlook so I don't miss early appointments, but if I could somehow have BOTH open in two separate windows, that would be awesome. Is there a command-line interface or something that can accomplish this?

Best Answer

This is quite easy. Just create a batch file, say Outlook.cmd (this is just a plain text file with .cmd extension instead of .txt, so you can use Notepad to edit it) on your Desktop with the following content (just copy-paste it):

@start "" "%ProgramFiles(x86)%\Microsoft Office\Office14\outlook.exe" /select outlook:Inbox
@start "" "%ProgramFiles(x86)%\Microsoft Office\Office14\outlook.exe" /select outlook:Calendar

After that run this file instead of Outlook shortcut.

Related Question