Enable or disable user access to Outlook for Windows in Exchange Online

By default, users in Microsoft 365 or Office 365 can access their work or school mailboxes using Outlook for Windows (formerly known as the new Outlook for Windows). Admins can use the following methods to control user access to work or school mailboxes in Outlook for Windows:

  • Use Exchange Online PowerShell to prevent or allow access to work or school mailboxes using Outlook for Windows.
  • Use registry keys to show or hide the Try the new Outlook toggle in classic Outlook.

The rest of this article describes these procedures.

What do you need to know before you begin?

Tip

Having problems? Ask for help in the Exchange Online forum.

Use Exchange Online PowerShell to enable or disable access to work or school mailboxes in Outlook for Windows

Admins can use the following methods in Exchange Online PowerShell to prevent or allow user access to work or school mailboxes:

  • Set-CasMailbox: Allows granular control for existing work or school mailboxes (individual mailboxes or multiple mailboxes).
  • Set-OwaMailboxPolicy: Applies to existing and future work or school mailboxes using a broad, policy-based approach.

These methods are described in the following subsections.

Tip

The default value for the OneWinNativeOutlookEnabled parameter on both cmdlets is blank ($null), which is equivalent to the value $true (users aren't restricted from accessing their work or school mailboxes using Outlook for Windows).

Use the Set-CASMailbox cmdlet to control access to work or school mailboxes in Outlook for Windows

After you Connect to Exchange Online PowerShell, use any of the following methods:

  • Individual mailboxes: Use the following syntax:

    Set-CASMailbox -Identity <MailboxIdentity> -OneWinNativeOutlookEnabled <$true | $false | $null>
    

    Where <MailboxIdentity> is any value that uniquely identifies the mailbox. For example:

    • Name
    • Alias
    • Email address
    • User ID

    This example disables Outlook for Windows for the specified user.

    Set-CASMailbox -Identity colin@contoso.onmicrosoft.com -OneWinNativeOutlookEnabled $false
    

    This example enables Outlook for Windows for the specified user.

    Set-CASMailbox -Identity colin@contoso.onmicrosoft.com -OneWinNativeOutlookEnabled $true
    
  • Multiple mailboxes: You have the following options:

    • Filter mailboxes by attributes: The target mailboxes share at least one unique filterable attribute. For example:

      • Title, Department, or address information for user accounts as seen by the Get-User cmdlet.
      • CustomAttribute1 through CustomAttribute15 for mailboxes as seen by the Get-Mailbox cmdlet.

      For more information, see Filterable Properties for the -Filter Parameter and Get-Mailbox.

      This method requires two commands:

      • Identify the mailboxes and store the results in a variable.
      • Use the results to enable or disable access to the mailboxes using Outlook for Windows.
      $<VariableName> = <Get-User | Get-Mailbox> -ResultSize unlimited -Filter <Filter>
      
      $<VariableName> | foreach {Set-CASMailbox -Identity $_.MicrosoftOnlineServicesID -OneWinNativeOutlookEnabled <$true | $false | $null>}
      

      This example disables access to Outlook for Windows for all mailboxes where the Title attribute contains "Vendor" or "Contractor".

      $Vend = Get-User -ResultSize unlimited -Filter "(RecipientType -eq 'UserMailbox') -and (Title -like '*Vendor*' -or Title -like '*Contractor*')"
      
      $Vend | foreach {Set-CASMailbox -Identity $_.MicrosoftOnlineServicesID -OneWinNativeOutlookEnabled $false}
      
    • Specify mailboxes in a list: Use a text file to identify the mailboxes. The text file contains one mailbox on each line like this:

      akol@contoso.com
      ljohnston@contoso.com
      kakers@contoso.com

      This method requires two commands:

      • Specify the text file that identifies the mailboxes and store the results in a variable.
      • Use the results to enable or disable access to the mailboxes using Outlook for Windows.
      $<VariableName> = Get-Content "<text file>"
      
      $<VariableName> | foreach {Set-CASMailbox -Identity $_ -OneWinNativeOutlookEnabled <$true | $false>}
      

      This example disables access to Outlook for Windows for the mailboxes specified in the file C:\My Documents\Management.txt.

      $Mgmt = Get-Content "C:\My Documents\Management.txt"
      
      $Mgmt | foreach {Set-CASMailbox -Identity $_ -OneWinNativeOutlookEnabled $false}
      

For detailed syntax and parameter information, see Set-CASMailbox.

How do you know you successfully used the Set-CASMailbox cmdlet to enable or disable access to work or school mailboxes in Outlook for Windows?

To verify you successfully used the Set-CASMailbox cmdlet to enable or disable access to work or school mailboxes in Outlook for Windows, use any of the following methods:

Tip

  • The value True or blank for the OneWinNativeOutlookEnabled property means access is enabled.
  • The value False for the OneWinNativeOutlookEnabled property means access is disabled.
  • Replace <MailboxIdentity> with the name, alias, email address or user ID of the mailbox, and then run the following command to verify the value of the OneWinNativeOutlookEnabled property:

    Get-CASMailbox -Identity <MailboxIdentity> | Format-List Name,OneWinNativeOutlookEnabled
    
  • Run the following command to verify the value of the OneWinNativeOutlookEnabled property for all user mailboxes:

    Get-CASMailbox -ResultSize unlimited -Filter "RecipientTypeDetailsValue -eq 'UserMailbox'" | Format-Table DisplayName,OneWinNativeOutlookEnabled
    
  • If you modified the OneWinNativeOutlookEnabled value for multiple users, use the same variable to check the value for those users. For example:

    $Vend | foreach {Get-CASMailbox -Identity $_.MicrosoftOnlineServicesID | Format-Table DisplayName,OneWinNativeOutlookEnabled}
    

    or

    $Mgmt | foreach {Get-CASMailbox -Identity $_ | Format-Table DisplayName,OneWinNativeOutlookEnabled}
    

For detailed syntax and parameter information, see Get-CASMailbox.

Use the Set-OwaMailboxPolicy cmdlet to control access to work or school mailboxes in Outlook for Windows

Outlook on the web mailbox policies (formerly known as Outlook Web App mailbox policies or OWA mailbox policies) control the Outlook on the web and Outlook for Windows experience for users.

By default, all organizations have default policy named OwaMailboxPolicy-Default applied to all mailboxes. Admins can create and apply custom policies to specific groups of users. For more information, see Apply or remove mailbox policies for Outlook on the web and Outlook for Windows in Exchange Online.

After you Connect to Exchange Online PowerShell, do the steps described in the following subsections.

Step 1 (Optional): Verify Outlook on the web is enabled for the target mailboxes

If users are blocked from using Outlook on the web to access their mailboxes, they also can't use Outlook for Windows to access their mailboxes.

By default, all users can access their mailboxes using Outlook on the web. To verify the status for all user mailboxes in the organization, run the following command to verify the value of the OWAEnabled property:

Get-CASMailbox -ResultSize unlimited -Filter "RecipientTypeDetailsValue -eq 'UserMailbox'" | Format-Table DisplayName,OWAEnabled
  • The value True means Outlook on the web access to the mailbox is enabled. You can proceed to the next step to enable or disable access to the mailboxes using Outlook for Windows.

  • The value False means Outlook on the web access to the mailbox is disabled, which also means Outlook for Windows access to the mailbox is disabled. You can't enable access to the mailbox using Outlook for Windows until you enable access for Outlook on the web. The required commands are similar to the commands in the Use the Set-CasMailbox cmdlet to control access to work or school mailboxes in Outlook for Windows section: just replace OneWinNativeOutlookEnabled with OWAEnabled in the commands, and use the value $true or $false ($null isn't available).

For detailed syntax and parameter information, see Get-OwaMailboxPolicy.

Step 2: Use the Set-OwaMailboxPolicy cmdlet to enable or disable access to work or school mailboxes in Outlook for Windows

Tip

The value you specify in the Outlook on the web mailbox policy affects all current and future mailboxes that have the policy applied to them. You can modify the default policy, modify custom policies, or you can create custom policies that apply the setting to specific groups of users.

To enable or disable access to mailboxes in Outlook for Windows in Outlook on the web mailbox policies, use the following syntax:

Set-OwaMailboxPolicy -Identity <PolicyIdentity> -OneWinNativeOutlookEnabled <$true | $false | $null>

Where <PolicyIdentity> is any value that uniquely the policy. For example:

  • Name
  • Distinguished name (DN)
  • GUID

This example disables access to Outlook for Windows for all mailboxes that use the default policy named OwaMailboxPolicy-Default (by default, all mailboxes):

Get-OwaMailboxPolicy -Identity OwaMailboxPolicy-Default -OneWinNativeOutlookEnabled $false

This example disables access to Outlook for Windows for all mailboxes in the organization by disabling access in all policies:

Get-OwaMailboxPolicy | Set-OwaMailboxPolicy -OneWinNativeOutlookEnabled $false

This example enables access to Outlook for Windows for all mailboxes in the organization by enabling access in all policies:

Get-OwaMailboxPolicy | Set-OwaMailboxPolicy -OneWinNativeOutlookEnabled $true

For detailed syntax and parameter information, see Get-OwaMailboxPolicy and Set-OwaMailboxPolicy.

How do you know you successfully used the Set-OwaMailboxPolicy cmdlet to enable or disable access to work or school mailboxes in Outlook for Windows?

To verify you successfully used the Set-OwaMailboxPolicy cmdlet to enable or disable access to work or school mailboxes in Outlook for Windows, run the following command to verify the value of the OneWinNativeOutlookEnabled property for all Outlook on the web mailbox policies:

Get-OwaMailboxPolicy | Set-OwaMailboxPolicy | Format-Table Name,OneWinNativeOutlookEnabled
  • The value True or blank for the OneWinNativeOutlookEnabled property means access is enabled, as long as the value of the OWAEnabled property in the output of the Get-CASMailbox cmdlet for the mailbox is also True.

  • The value False for the OneWinNativeOutlookEnabled property means access is disabled. Access is also disabled if the value of the OWAEnabled property in the output of the Get-CASMailbox cmdlet for the mailbox is False, regardless of the OneWinNativeOutlookEnabled property value in the output of the Get-OwaMailboxPolicy cmdlet.

Use the registry to enable or disable the "Try the new Outlook" toggle in classic Outlook

Screenshot of the Try the new Outlook toggle in classic Outlook.

The Try the new Outlook toggle is available in all current versions of classic Outlook in all builds and channels. The setting to control the availability of the Try the new Outlook" toggle in classic Outlook is available as group policy object (GPO) that you can manage via cloud policy in the following channels and builds of classic Outlook:

  • Current Channel (Preview): Version 2209 (15629.20058) or later.
  • Current Channel: Version 2304 (Build 16327.20214) or later.
  • Monthly Enterprise Channel: Version 2303 (Build 16227.20318) or later.
  • Semi-Annual Enterprise Channel (Preview): Build 16731.20234 or later.
  • Semi-Annual Enterprise Channel: Build 16731.20504 or later.

Or, you can use the registry to control the availability of the Try the new Outlook" toggle in classic Outlook as described in the following steps:

  1. Copy one or more of the following text blocks into Notepad:

    • Select one of the following values:

      • Hide the Try the new Outlook toggle in classic Outlook:

        Windows Registry Editor Version 5.00
        
        [HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Options\General]
        "HideNewOutlookToggle"=dword:00000001
        
      • Show the Try the new Outlook" toggle in classic Outlook:

        Windows Registry Editor Version 5.00
        
        [HKEY_CURRENT_USER\Software\Microsoft\office\16.0\Outlook\Options\General]
        "HideNewOutlookToggle"=dword:00000000
        
    • Prevent users from changing the registry value that shows or hides the Try the new Outlook" toggle in classic Outlook:

      Windows Registry Editor Version 5.00
      
      [HKEY_CURRENT_USER\Software\Policies\Microsoft\office\16.0\outlook\options\general]
      "HideNewOutlookToggle"=dword:00000001
      

    Tip

    The text file requires only one instance of Windows Registry Editor Version 5.00 if you copy multiple text blocks. For example:

    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Options\General]
    "HideNewOutlookToggle"=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Policies\Microsoft\office\16.0\outlook\options\general]
    "HideNewOutlookToggle"=dword:00000001
    
  2. Save the file as .reg in a location that's easy to find. For example: C:\Data\Disable New Outlook toggle in Outlook Desktop.reg or C:\Data\Enable New Outlook toggle in Outlook Desktop.reg.

  3. Double-click on the .reg file and select Yes in the confirmation dialog that opens.

FAQ

Q: If a user previously turned on "Try the new Outlook" in classic Outlook, how long does it take for the Set-CASMailbox command to disable access to the mailbox in Outlook for Windows? Do they need to restart Outlook for Windows?

A: If a user is already trying Outlook for Windows with their work or school account before an admin disables their access, their account is disabled in Outlook for Windows and they can no longer use Outlook for Windows with that account.

The user can delete the account from Outlook for Windows and then use Outlook for Windows with another account.

If an admin already used the OneWinNativeOutlookEnabled parameter on the Set-CASMailbox or Set-OwaMailboxPolicy cmdlets to disable access to the mailbox in Outlook for Windows, and the user tries to turn on the Try the new Outlook toggle, they receive the error shown in the following screenshot:

Screenshot of the error message users get when they try to turn on the Try the new Outlook toggle after an admin already disabled access to their mailbox.

Q: Do the Exchange Online PowerShell commands to enable or disable work or school mailbox access in Outlook for Windows affect the "Try the new Outlook" toggle in classic Outlook?

A: No.

The OneWinNativeOutlookEnabled parameter on the Set-CASMailbox or Set-OwaMailboxPolicy cmdlets doesn't affect the availability of the Try the new Outlook toggle in classic Outlook. The cmdlets determine whether users can open their work or school mailboxes in Outlook for Windows.

Admins can manage the toggle in classic Outlook separately using the registry settings. For example, an admin might want to allow users to try Outlook for Windows without having the toggle available in classic Outlook.

Also, users can install the Outlook for Windows app from the Microsoft Store, which further illustrates how the PowerShell cmdlets control access to work or school mailboxes only, regardless of where or how the users installed Outlook for Windows.

Q: A user previously turned on "Try the new Outlook" in classic Outlook, but then the registry key to hide the toggle is configured on their computer. What happens?

A: It depends on how the user launches Outlook for Windows:

  • Using the classic Outlook icon: The user is switched out of Outlook for Windows back to classic Outlook the next time they open classic Outlook.
  • Using the Outlook for Windows icon: Outlook for Windows opens as if they selected Try the new Outlook in classic Outlook. The logic to switch back to classic Outlook runs only when the registry key is read (typically, when the computer restarts). Outlook for Windows doesn't recognize or use the registry key; only classic Outlook uses the registry key.

Q: If user turns on "Try the new Outlook" in classic Outlook, and later turns off the toggle, what's required to stop using Outlook for Windows?

When the user decides to switch back, Outlook for Windows closes and classic Outlook opens. This action happens immediately. Outlook for Windows and classic Outlook are two separate apps that remain installed, regardless of the toggle setting.

The toggle allows users to switch quickly between the two apps, and allows the Outlook Team to ask for feedback when users switch back to classic Outlook.

Q: Are group policies for classic Outlook honored in Outlook for Windows?

A: If your organization uses group policies to configure classic Outlook, you might want to implement corresponding policies for Outlook for Windows. All ADMX templates and most Cloud policies apply only to classic Outlook. For instructions, see Map classic Outlook policies to new Outlook.

Toggling out of the new Outlook for Windows preview

Release notes for Current Channel

Release notes for Monthly Enterprise Channel