Stop the Research Pane appearing in Microsoft Office

44

15

How can I stop the Research Pane from appearing in Microsoft Office, for example when I am holding Alt and click somewhere in an email in Outlook?

This is unintentional and typically happens when I am Alt-Tabbing between windows and causes a painful delay. Can this be switched off?

enter image description here
click to enlarge

Andrew Doran

Posted 2009-10-16T17:15:27.390

Reputation: 735

Which Microsoft Office do you use? 2007 or 2010 (or something else)? – Rolnik – 2011-03-30T21:27:24.797

2For those interested in the bounty, I'm referring specifically to 2007 if it makes a difference but I suspect it doesn't. – Daniel DiPaolo – 2011-04-04T20:33:54.620

Answers

39

After fighting with this myself for years, I found out the answer.

From Word, press Alt-F11 to open the VB Editor.

Press Ctrl-G to open the Immediate Window.

Type this line and press Enter:

Application.CommandBars("Research").Enabled = False

Note that nothing will seem to happen, but you can go ahead and close the VB Editor and Word. The next time you open Outlook, the feature should be disabled.

Jon Peltier

Posted 2009-10-16T17:15:27.390

Reputation: 3 470

3David Cornish's solution worked for me: Application.Explorers(1).CommandBars("Research").Enabled = false – ScrappyDev – 2015-09-25T17:44:47.657

Nice, solution from @david-cornish helped me in Outlook!

Interesting. It’s 2015, and there’s still no way (or maybe there is already? I couldn’t find) to uncheck some checkbox somewhere in Options, and make Research window stop to appear. I’m sure that’s a great feature, but the way to make it show up should be definitely customizable, otherwise people hate it for getting in their way. – stansult – 2015-10-19T18:24:14.100

Fantastic! Thank you. Not even Microsoft support could tell me how to do it, but you did. Appreciated. – Andrew Doran – 2012-03-27T15:21:44.447

2The original question mentioned Outlook, not Word. When I try this with standalone Outlook I get "Object does not support this method or property". – Burhan Ali – 2012-10-17T15:50:39.013

5In Outlook I appear to have got it working with Application.Explorers(1).CommandBars("Research").Enabled = false – David Cornish – 2013-09-26T09:09:34.377

5Using Microsoft Word 2010, this appears to work: Application.ActiveWindow.CommandBars("Research").Enabled = False – John Fisher – 2013-12-04T15:35:18.413

1This works perfectly fine, thanks for the solution! (Tested on MS Word 2013) – Christian Feldbacher – 2014-01-22T10:50:51.390

10

Unfortunately, the answer is "No, this can't be switched off".

People have been wondering this for quite a while now (here's some examples dating back to like 2007):

You'll probably have to rig up something kludgy to trap the keys using AutoHotkey or AutoIt or alike.

Couple things you can try to live with it:

  • Remove all entries from the Research Options and ensure it's not trying to access network-based research services (so at least it will open quickly).
  • Leave the pane open all the time (just shrink it down a bit, or undock it and hide it someplace out of the way).

Not the answer you want I'm sure, but it's the answer as far as I can find.

Ƭᴇcʜιᴇ007

Posted 2009-10-16T17:15:27.390

Reputation: 103 763

+1 for the research revealing shared misery at least, and also for the other good suggestions for reducing the headache – Daniel DiPaolo – 2011-04-04T20:36:01.607

Thanks, glad to know it's not just me. Appreciate your time in investigating this. – Andrew Doran – 2011-04-05T13:41:06.323

Daniel, @rzlines Oct '09 response was correct and works well when add/remove is run as Administrator. Some registry edits to complete the cleanup. – V Stuart Foote – 2011-04-06T02:46:17.280

4

I was able to turn mine off by opening the Outlook options menu (File > Options). Then go down to the Add-Ins sub-tab.

Once in the Add-Ins menu, go to the bottom where it says, "Manage [COM Add-Ins]" and click on the Go button. Uncheck the box next to "Business Connectivity Services Add-In", then click OK.

This should keep the research pane from opening.

Pete

Posted 2009-10-16T17:15:27.390

Reputation: 41

Are you sure that add-in is related to the Research Pane? I get the pane but there is no "Business Connectivity Services Add-In" – golimar – 2019-11-27T14:31:34.287

I don't see 'File > Options' in Outlook? – Andrew Doran – 2013-07-24T15:43:53.330

3

You can also do this in Outlook via VBA. Office 2010 no longer lets you remove via most of these solutions.

Word, PowerPoint, and Excel allow you to use this easy solution.

Outlook requires more hassle as it uses both Explorers and Inspectors, which in different contexts both have this commandbar enabled. The solution is therefore two part.

Part one is setting up WithEvents to handle creation of each new Inspector. Generally these are whenever you OPEN a message/event/etc, and they are created/destroyed each time. So even if you hit every current Inspector, your new ones will not have the commandbar disabled.

Put the following into ThisOutlookSession in your VBA editor (Alt+F11). Each new inspector (and explorer, too, though I've yet to have an explorer created) will have its command bar disabled.


Public WithEvents colInspectors As Outlook.Inspectors
Public WithEvents objInspector As Outlook.Inspector
Public WithEvents colExplorers As Outlook.Explorers
Public WithEvents objExplorer As Outlook.Explorer

Public Sub Application_Startup()
    Init_colExplorersEvent
    Init_colInspectorsEvent
End Sub
Private Sub Init_colExplorersEvent()
    Set colExplorers = Outlook.Explorers
End Sub

Private Sub Init_colInspectorsEvent()
    'Initialize the inspectors events handler
    Set colInspectors = Outlook.Inspectors

End Sub

Private Sub colInspectors_NewInspector(ByVal NewInspector As Inspector)
    Debug.Print "new inspector"
    NewInspector.commandbars("Research").Enabled = False
    'This is the code that creates a new inspector with events activated
    Set objInspector = NewInspector
End Sub
Private Sub colExplorers_NewExplorer(ByVal NewExplorer As Explorer)
    'I don't believe this is required for explorers as I do not think Outlook
    'ever creates additional explorers... but who knows
    Debug.Print "new explorer"
    NewExplorer.commandbars("Research").Enabled = False
    'This is the code that creates a new inspector with events activated
    Set objExplorer = NewExplorer
End Sub

However this only will get the menu gone from some of the views in Outlook. You will still need to run the following macro to remove it from all explorers. As best I can tell this is persistent when you close/reopen Outlook:

Private Sub removeOutlookResearchBar()

    'remove from main Outlook explorer
    Dim mExp As Explorer
    For Each mExp In Outlook.Explorers
        mExp.commandbars("Research").Enabled = False
    Next mExp

End Sub

enderland

Posted 2009-10-16T17:15:27.390

Reputation: 1 788

2

Try this:

Add/Remove Programs ---> Microsoft Office ---> Add or Remove Features ---> expand Office Tools ---> disable Research Explorer Bar

source

rzlines

Posted 2009-10-16T17:15:27.390

Reputation: 7 006

1I tried that and unfortunately it hasn't worked - I still see the research pane appearing when I hold down Alt. – Andrew Doran – 2010-03-09T15:22:19.953

Andrew, you may want to check on that. It has to be for all Office 2007 users on the PC, but when run as Administrator the Add/Remove Programs --> Microsoft Office --> Add or Remove Features Installation Options --> Office Tools --> Research Explorer Bar set to "Not Available" and Continue. Followed by reboot is honored. Research bar is disabled. The per user HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Common\Research Key can be cleared. Highlight <alt> should no longer result in Research bar launch. – V Stuart Foote – 2011-04-06T02:36:47.800

1

In Outlook try this; it won't disable but will prevent freezing.

  1. Hold Alt & Left Mouse Click on a word to open the Research pane
  2. On the bottom of the Research pane click "Research Option"
  3. Under "Services" uncheck everything
  4. Click "Ok" to save the changes

Rose

Posted 2009-10-16T17:15:27.390

Reputation: 11

This still causes the Research pane to open it just stops it displaying any results. – ChrisB – 2019-06-28T09:31:44.763

0

If you don't want to disable the Research alt-click, but want to avoid it happening while you're alt-tabbing between windows, just avoid clicking within the content area in the Office app (i.e., click on the title bar or scrollbar etc). This avoids triggering Research.

Reg Edit

Posted 2009-10-16T17:15:27.390

Reputation: 1 930