Outlook - Remove blue tip boxes

Lars Olsen 116 Reputation points
2020-12-04T08:29:47.673+00:00

Hi.

When a user logs on with a fresh userprofile, the following 3 boxes are shown.

Is there a way to disable them? Something in the registry maybe?

I want them gone...

Welcome to the new search in Outlook
45067-outlooksearch.jpg

Relaxed or tighter layout? You choose.
45182-outlooklayout.jpg

Welcome to Outlook. Simplified.
45123-outlook-simlified.jpg

Outlook Management
Outlook Management
Outlook: A family of Microsoft email and calendar products.Management: The act or process of organizing, handling, directing or controlling something.
4,913 questions
{count} votes

6 answers

Sort by: Most helpful
  1. Christian Hayter 10 Reputation points
    2023-08-30T10:50:26.9566667+00:00

    Here is a powershell script to extract your own settings and create a .reg file.

    <#
    .SUMMARY
    Get existing office teaching callout settings, and format them as a .reg file to turn them all off.
    .EXAMPLE
    .\Get-OfficeTeachingCallouts.ps1 > .\OfficeTeachingCallouts.reg
    #>
    $Path = 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\TeachingCallouts'
    @"
    Windows Registry Editor Version 5.00
    
    [$Path]
    "@
    Get-Item Registry::$Path | ForEach-Object Property | Sort-Object | ForEach-Object { "`"$_`"=dword:00000002" }
    

    Here are my results merged with all those above.

    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\TeachingCallouts]
    "a79db66d-e74d-41e8-a138-558044fae3cb"=dword:00000002
    "AccCheckerPaneTeachingCallout"=dword:00000001
    "AccCheckerStatusBarTeachingCallout"=dword:00000002
    "AutoAltText1"=dword:00000002
    "AutocreateTeachingCallout_MoreLocations"=dword:00000002
    "AutoSaveFirstSaveExcel"=dword:00000002
    "AutoSaveFirstSavePPT"=dword:00000002
    "AutoSaveFirstSaveWord"=dword:00000002
    "AutoSaveToggleOnExcel"=dword:00000002
    "AutoSaveToggleOnPPT"=dword:00000002
    "AutoSaveToggleOnWord"=dword:00000002
    "CloudSettingsSyncTeachingCallout"=dword:00000002
    "ComingSoonTeachingCallout"=dword:00000002
    "CreateLiveComponentTeachingCallout"=dword:00000002
    "CreatePivotTableFromPowerBITeachingCallout"=dword:00000002
    "DataVisualizerRibbonTeachingCallout"=dword:00000002
    "e78dda87-8b86-4aa2-8036-a2dcf9d8cc44"=dword:00000002
    "EnhancedLocationWellTeachingCallout"=dword:00000002
    "ExportToWordProcessTabTeachingCallout"=dword:00000002
    "FocusedInboxTeachingCallout_7"=dword:00000001
    "GroupAdvancedSettingsTeachingCallout"=dword:00000002
    "GroupUnreadCountTeachingCallout"=dword:00000002
    "HubBarTeachingCallout"=dword:00000002
    "LineageDiscoverabilityTeachingCallout"=dword:00000002
    "LineageFilterTeachingCallout"=dword:00000001
    "MeetDarkModeComposeTeachingCallout"=dword:00000002
    "MeetDarkModeReadTeachingCallout"=dword:00000002
    "MeetingAllowForwardTeachingCallout"=dword:00000002
    "Olk_SearchBoxTitleBar_SLR_Sequence"=dword:00000002
    "OneNoteQuickNoteToolbarToggleButtonCallout"=dword:00000002
    "PinAppTeachingCallout"=dword:00000002
    "PowerQueryAsDefaultGetDataTeachingCallout"=dword:00000002
    "PPT_RecordingTab_Callout_Sequence"=dword:00000002
    "PPT_RecordVideoPresentation_Callout"=dword:00000002
    "PPT_Rehearse_Callout"=dword:00000002
    "PPT_Rehearse_Callout_Last_Shown"=dword:00000002
    "PreviewPlaceUpdate"=dword:00000002
    "RibbonOverflowTeachingCalloutID"=dword:00000002
    "RoamingSigTeachingCallout"=dword:00000002
    "Search.TopResults"=dword:00000002
    "SearchIncludeDeletedItems"=dword:00000002
    "SLRToggleReplaceTeachingCalloutID"=dword:00000002
    "StatusBarFormulasTeachingCallout"=dword:00000002
    "SuggestedRepliesCallout"=dword:00000002
    "SyncProgressUITeachingCalloutA"=dword:00000002
    "TabbedPanesTeachingUI"=dword:00000002
    "ThreadedCommentsCallout"=dword:00000002
    "TryNewOutlookToggle"=dword:00000002
    "UseTighterSpacingTeachingCallout"=dword:00000002
    "UseToDoAppTeachingCallout"=dword:00000002
    "VersionHistoryRenameCalloutExcel"=dword:00000002
    "VersionHistoryRenameCalloutPPT"=dword:00000002
    "VersionHistoryRenameCalloutWord"=dword:00000002
    "Word_CanvasContextual_v3"=dword:00000002
    "Word_TextPredictor_InCanvas"=dword:00000001
    
    2 people found this answer helpful.

  2. Jade Liang-MSFT 9,956 Reputation points Microsoft Employee
    2020-12-07T09:02:36.027+00:00

    Hi @Lars Olsen ,

    Welcome to our forum. As far as these New feature blue tip Boxes, as you know, it would only display when you first login to the new userprofile. I guess it's aimed to make it more easier and faster for users to get the feature in Outlook, and so sorry for the inconvenience caused to you.

    Based on my research, I have checked all settings in my Outlook, there seems to no option that could close or disable them permanently. I also have tried to research a lot in the point of Register Editor but still haven't found any related settings. So for your requirment of disabling them, we would like to recommend you to please provide your ideal feedback via Microsoft UserVoice service. Our developer team regularly reviews ideas to consider in the design and development of future product updates. We appreciate the time you take to share them with us and hope that in the near future, this feature can be included. Thanks for your support and understanding.


    If the response is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.

  3. Thomas S 6 Reputation points
    2021-12-07T12:03:55.63+00:00

    I found this post helpful to try and get rid of these items in a non-persistent environment.

    [HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\TeachingCallouts]
    "SLRToggleReplaceTeachingCalloutID"=dword:00000002
    "UseTighterSpacingTeachingCallout"=dword:00000002
    "CloudSettingsSyncTeachingCallout"=dword:00000002
    "Olk_SearchBoxTitleBar_SLR_Sequence"=dword:00000002
    "GroupUnreadCountTeachingCallout"=dword:00000002
    "MeetingAllowForwardTeachingCallout"=dword:00000002
    "AutoSaveFirstSaveWord"=dword:00000002
    "ComingSoonTeachingCallout"=dword:00000002
    "AutocreateTeachingCallout_MoreLocations"=dword:00000002
    "Search.TopResults"=dword:00000002
    "DataVisualizerRibbonTeachingCallout"=dword:00000002
    "ExportToWordProcessTabTeachingCallout"=dword:00000002
    "PreviewPlaceUpdate"=dword:00000002
    "RibbonOverflowTeachingCalloutID"=dword:00000002
    "PPT_RecordingTab_Callout_Sequence"=dword:00000002
    "PowerQueryAsDefaultGetDataTeachingCallout"=dword:00000002
    "GroupAdvancedSettingsTeachingCallout"=dword:00000002
    "AccCheckerStatusBarTeachingCallout"=dword:00000002
    "EnhancedLocationWellTeachingCallout"=dword:00000002
    "AutoSaveToggleOnExcel"=dword:00000002
    "AutoSaveFirstSaveExcel"=dword:00000002
    "a79db66d-e74d-41e8-a138-558044fae3cb"=dword:00000002
    "CreatePivotTableFromPowerBITeachingCallout"=dword:00000002
    "ThreadedCommentsCallout"=dword:00000002
    "Word_CanvasContextual_v3"=dword:00000002
    "AutoSaveToggleOnWord"=dword:00000002
    "AutoAltText1"=dword:00000002
    "SyncProgressUITeachingCalloutA"=dword:00000002
    "AutoSaveToggleOnPPT"=dword:00000002
    "AutoSaveFirstSavePPT"=dword:00000002

    2 more :
    VersionHistoryRenameCalloutPPT
    TabbedPanesTeachingUI

    We are finding more as the days goes on.
    If a users gets a new one I just check in the registry what new entry there is and add them to our GPO.
    Should be in the Office 16 admx files, but yeah this is the MS way.

    1 person found this answer helpful.

  4. Rollin Kuhn (I.T. Admin) 5 Reputation points
    2023-08-21T22:27:19.01+00:00

    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\Common\TeachingCallouts]

    "SLRToggleReplaceTeachingCalloutID"=dword:00000002

    "UseTighterSpacingTeachingCallout"=dword:00000002

    "RibbonOverflowTeachingCalloutID"=dword:00000002

    "CloudSettingsSyncTeachingCallout"=dword:00000002

    "Olk_SearchBoxTitleBar_SLR_Sequence"=dword:00000002

    "SearchIncludeDeletedItems"=dword:00000002

    "AutoAltText1"=dword:00000002

    "ThreadedCommentsCallout"=dword:00000002

    "PowerQueryAsDefaultGetDataTeachingCallout"=dword:00000002

    "AutoSaveToggleOnExcel"=dword:00000002

    "FocusedInboxTeachingCallout_7"=dword:00000001

    "AutocreateTeachingCallout_MoreLocations"=dword:00000002

    "GroupAdvancedSettingsTeachingCallout"=dword:00000002

    "GroupUnreadCountTeachingCallout"=dword:00000002

    "StatusBarFormulasTeachingCallout"=dword:00000002

    "PreviewPlaceUpdate"=dword:00000002

    "Word_TextPredictor_InCanvas"=dword:00000001

    "SuggestedRepliesCallout"=dword:00000002

    "AccCheckerStatusBarTeachingCallout"=dword:00000002

    "MeetingAllowForwardTeachingCallout"=dword:00000002

    "AutoSaveToggleOnWord"=dword:00000002

    "VersionHistoryRenameCalloutWord"=dword:00000002

    "AutoSaveFirstSaveWord"=dword:00000002

    "AccCheckerPaneTeachingCallout"=dword:00000001

    "HubBarTeachingCallout"=dword:00000002

    "LineageDiscoverabilityTeachingCallout"=dword:00000002

    "PinAppTeachingCallout"=dword:00000002

    "LineageFilterTeachingCallout"=dword:00000001

    "OneNoteQuickNoteToolbarToggleButtonCallout"=dword:00000002

    "ComingSoonTeachingCallout"=dword:00000002

    "Search.TopResults"=dword:00000002

    "DataVisualizerRibbonTeachingCallout"=dword:00000002

    "ExportToWordProcessTabTeachingCallout"=dword:00000002

    "PPT_RecordingTab_Callout_Sequence"=dword:00000002

    "EnhancedLocationWellTeachingCallout"=dword:00000002

    "AutoSaveFirstSaveExcel"=dword:00000002

    "a79db66d-e74d-41e8-a138-558044fae3cb"=dword:00000002

    "CreatePivotTableFromPowerBITeachingCallout"=dword:00000002

    "Word_CanvasContextual_v3"=dword:00000002

    "SyncProgressUITeachingCalloutA"=dword:00000002

    "AutoSaveToggleOnPPT"=dword:00000002

    "AutoSaveFirstSavePPT"=dword:00000002

    "VersionHistoryRenameCalloutPPT"=dword:00000002

    "TabbedPanesTeachingUI "=dword:00000002

    This is all that I have now, 43 in total. (Apologies for all the line spacing--the post editor is crap.)

    1 person found this answer helpful.
    0 comments No comments

  5. Pavel yannara Mirochnitchenko 11,716 Reputation points MVP
    2021-08-02T21:22:53.287+00:00

    I have the same proplem on Intune managed computers and it scares me that we are on O365 current channel but still Office admin templates are shown as 2016 version. I believe it is the same thing in AD / Group Policies. I have these enabled, but still I am seing same screen. Does O365 still honor v16 registry?