• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

How to Start Outlook with a Particular Profile

Slipstick Systems

› Outlook › How to Start Outlook with a Particular Profile

Last reviewed on February 9, 2018     12 Comments

When you have multiple profiles in Outlook, you can choose which one is used when you start Outlook.

Open Control Panel, search for Mail and choose Show Profiles.
prompt-for-profile
If you always want to start with the same profile, choose Always use this profile.

If you want to select the profile when Outlook starts, select your most used profile in the Always use this profile menu, then change the setting to Prompt for a profile to be used.

When you start Outlook, the profile listed in the Choose Profile dialog will be selected and you'll have the option of choosing a different profile.

Choose Profile dialog

Using Shortcuts

If you prefer to use shortcuts to open Outlook, you can create a shortcut to open Outlook using a specific profile. Use the command line switch /profile profile_name, replacing profile_name with your profile's name.

Create a shortcut to Microsoft Outlook, then add the following to the target command for the shortcut.

/profile "<profile name>"

For example, if Microsoft Outlook is installed in C:\Program Files\Microsoft Office and I want to start it with a profile named "MS Fax only," here's the command I would use in the shortcut (put it all on one line, of course):

C:\Program Files\Microsoft Office\Office10\Outlook.exe /profile "MS Fax only"

Right-click on the desktop and choose New > Shortcut then follow the wizard. Alternately, you can copy an existing Outlook shortcut and edit it, adding the /profile switch and desired profile name to the shortcut.
create a shortcut to open outlook

The profile switch also works with the Run command (use Windows key + R to open Run). Type outlook.exe /profile profile_name in the Run box then press Enter to open Outlook using that profile.

run-command

Notes

Make sure you include quotation marks around the path and profile if they contain spaces.

"C:\Program Files\Microsoft Office\Office\OUTLOOK.EXE" /profile "Personal only"

Outlook profiles are only available if you are running Outlook 97 or Outlook 2002 and newer or use Outlook 98 or Outlook 2000 in Corporate/Workgroup mode.

Outlook 2000 and Outlook 98 in Internet Mail Only mode do not utilize MAPI profiles like Corporate mode. Since IMO mode uses a static name for its one "profile," if you want to use multiple profiles, you must set up different Windows users to have unique Windows logons. Under Win9x you can enable OS level user profiles on the User Profiles tab of the Control Panel's Passwords applet. Once enabled you have log into Windows with a user name (and password - although the password can be blank).

More Information

How to tell which Microsoft Outlook profile you're using
For other command-line switches you can use when starting Outlook, read the Help topic on Control What Happens When You Start Outlook and see:
Command Lines Switches for Outlook 2010
Command Lines Switches (older versions)

How to Start Outlook with a Particular Profile was last modified: February 9th, 2018 by Diane Poremsky
Post Views: 253

Share this:

  • Share on Facebook (Opens in new window) Facebook
  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Mastodon (Opens in new window) Mastodon
  • Email a link to a friend (Opens in new window) Email

Related Posts:

  • Command Line Switches Tutorial
  • Reset the New Outlook Profile
  • Cannot start Microsoft Office Outlook Error Message
  • How to start Outlook in Safe Mode

About Diane Poremsky

A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

Comments

  1. Mollie says

    June 23, 2020 at 2:34 pm

    trying to remove the coloured circle around name on email as the initial is incorrect.
     
    thank you kindly for your help

    Reply
    • Diane Poremsky says

      June 23, 2020 at 4:16 pm

      That is not currently user-configurable - outlook use one of the first letters in the display name or email address.

      Reply
  2. Katie Dunn says

    October 10, 2019 at 11:20 am

    Is there any advantage or reason to remove the profile called Outlook and create one based on the user name? We have always been removing the profile called Outlook and adding one with the user's initials on newly imaged machines. But, if there is no difference from one to the other, can't we just leave the one called Outlook?

    Reply
    • Diane Poremsky says

      October 10, 2019 at 12:44 pm

      no, no difference - its just a name.

      Reply
  3. Shells says

    April 26, 2016 at 5:25 am

    Is it possible to also add that this profile must now be the default to the shortcut?

    Reply
    • Diane Poremsky says

      April 29, 2016 at 1:51 pm

      You can set the default profile in Control panel, Mail then use the shortcuts to open outlook to other profiles.

      Reply
  4. Piotr Rogala says

    February 3, 2015 at 8:41 am

    Good article, thanks!

    Reply
  5. David says

    December 16, 2014 at 12:22 am

    Thanks, but I finally figured it out...
    The problem is in the "Kill". If you run Outlook and end the process in Task manager, when you restart Outlook, it will open using whatever profile it was using when you killed it last. Using the /profile switch only works if Outlook is closed cleanly, either from Outlook or programmatically. I got lucky and found a vbs script that cleanly closes Outlook:
    For anyone who needs it, it's a .vbs file that contains this:

    strComputer = "."
    Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
    Set colProcessList = objWMIService.ExecQuery _
    ("Select * from Win32_Process Where Name = 'Outlook.exe'")
    For Each objProcess in colProcessList
    Set objOutlook = CreateObject("Outlook.Application")
    objOutlook.Quit
    Next

    Thanks for your help.
    David

    Reply
  6. Kayak says

    May 16, 2013 at 8:31 am

    long way....technical way....around the answer. We don't want 'baby steps users' starting to think they can freely use command lines!

    Reply
    • Diane Poremsky says

      May 16, 2013 at 10:31 am

      The command line is only needed if you have multiple profiles and set one as default. You can also create shortcuts to specific profiles using command lines. (This page came over from our old site and definitely needs updating!)

      Reply
      • David says

        December 14, 2014 at 12:20 pm

        I have a batch job that will run weekly; it requires a different Profile be loaded before it runs (it'll do a mail merge).

        So, I need to kill Outlook if it's running and restart it with the non-default profile.

        The problem is that if I kill Outlook manually and then run this batch file, it does successfully start Outlook using the non-default profile (TBS), but if I let this batch file kill Outlook, then when it restarts Outlook, the default profile is loaded (NOT TBS as it should):

        C:\DM-Utilities\PSTools\pskill outlook
        timeout /T 10
        rem start outlook.exe /profile TBS
        start "" "C:\Program Files\Microsoft Office\Office14\OUTLOOK.EXE" /profile TBS
        timeout /T 20

        I'm stumped,

        Thanks,
        David

      • Diane Poremsky says

        December 15, 2014 at 11:09 am

        I'm guessing the kill is not really killing outlook, or the wait time for it to completely shut down is not long enough. Check Processes in Tasks manager - is outlook running? (It should also be in the notification tray grayed out.) If it's not completely shut down, restarting will reopen the profile you were using. Utilities that access outlook data (like Lync) can also keep it open in a hidden state.

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Visit Slipstick Forums.
What's New at Slipstick.com

Latest EMO: Vol. 31 Issue 8

Subscribe to Exchange Messaging Outlook






Support Services

Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

Our Sponsors

CompanionLink
ReliefJet
  • Popular
  • Latest
  • Week Month All
  • Deleting Auto-Complete Entries No Longer Works
  • Use Classic Outlook, not New Outlook
  • How to Remove the Primary Account from Outlook
  • How to Hide or Delete Outlook's Default Folders
  • Disable "Always ask before opening" Dialog
  • Change Outlook's Programmatic Access Options
  • Adjusting Outlook's Zoom Setting in Email
  • Removing Suggested Accounts in New Outlook
  • Reset the New Outlook Profile
  • Understanding Outlook's Calendar patchwork colors
  • Deleting Auto-Complete Entries No Longer Works
  • Sync Issues and Errors with Gmail and Yahoo accounts
  • Error Opening iCloud Appointments in Classic Outlook
  • Opt out of Microsoft 365 Companion Apps
  • Mail Templates in Outlook for Windows (and Web)
  • Urban legend: Microsoft Deletes Old Outlook.com Messages
  • Buttons in the New Message Notifications
  • Move Deleted Items to Another Folder Automatically
  • Open Outlook Templates using PowerShell
  • Count and List Folders in Classic Outlook
Ajax spinner

Recent Bugs List

Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

Office Update History

Update history for supported Office versions is at Update history for Office

Outlook Suggestions and Feedback

Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

Other Microsoft 365 applications and services




New Outlook Articles

Deleting Auto-Complete Entries No Longer Works

Sync Issues and Errors with Gmail and Yahoo accounts

Error Opening iCloud Appointments in Classic Outlook

Opt out of Microsoft 365 Companion Apps

Mail Templates in Outlook for Windows (and Web)

Urban legend: Microsoft Deletes Old Outlook.com Messages

Buttons in the New Message Notifications

Move Deleted Items to Another Folder Automatically

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Newest Code Samples

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Insert Word Document into Email using VBA

Warn Before Deleting a Contact

Use PowerShell to Delete Attachments

Remove RE:, FWD:, and Other Prefixes from Subject Line

Change the Mailing Address Using PowerShell

Categorize @Mentioned Messages

Send an Email When You Open Outlook

Delete Old Calendar Events using VBA

Repair PST

Convert an OST to PST

Repair damaged PST file

Repair large PST File

Remove password from PST

Merge Two Data Files

Sync & Share Outlook Data

  • Share Calendar & Contacts
  • Synchronize two computers
  • Sync Calendar and Contacts Using Outlook.com
  • Sync Outlook & Android Devices
  • Sync Google Calendar with Outlook
  • Access Folders in Other Users Mailboxes

Diane Poremsky [Outlook MVP]

Make a donation

Mail Tools

Sending and Retrieval Tools

Mass Mail Tools

Compose Tools

Duplicate Remover Tools

Mail Tools for Outlook

Online Services

Calendar Tools

Schedule Management

Calendar Printing Tools

Calendar Reminder Tools

Calendar Dates & Data

Time and Billing Tools

Meeting Productivity Tools

Duplicate Remover Tools

Productivity

Productivity Tools

Automatic Message Processing Tools

Special Function Automatic Processing Tools

Housekeeping and Message Management

Task Tools

Project and Business Management Tools

Choosing the Folder to Save a Sent Message In

Run Rules on messages after reading

Help & Suggestions

Submit Outlook Feature Requests

Slipstick Support Services

Buy Microsoft 365 Office Software and Services

Visit Slipstick Forums.

What's New at Slipstick.com

Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
Outlook & iCloud Issues | Outlook Apps
EMO Archives | About Slipstick | Slipstick Forums
Submit New or Updated Outlook and Exchange Server Utilities

Send comments using our Feedback page
Copyright © 2026 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.