Supercharge your PowerPoint productivity with

Supercharge your PPT Productivity with PPTools - Click here to learn more.

Tell me about PPTools

What add-ins are loaded?


PPTools
Shape Styles brings the power of styles to PowerPoint. Apply complex formatting with a single click
Merge Excel, CSV or tab-delimited data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more
FixLinks prevents broken links when you distribute PowerPoint presentations
Optimizer saves disk space and bandwidth, shrinks your PowerPoint presentations to the right size for email, screenshow or printing
PPT2HTML gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements
Prep4PDF preserves interactivity in PowerPoint presentations when you convert to PDF
Image Export converts PowerPoint slides to JPG, PNG, GIF, WMF and more

Problem

You suspect that an installed add-in may be causing problems but you don't have any suspicious add-ins listed in the Tools, Addins dialog box.

Or in PPT 2007 when you click Office Button, PowerPoint Options, Add-ins.

Best bet if you haven't upgraded to PowerPoint 2007

This new utility program from PowerPoint MVP Chirag Dalal runs outside PowerPoint. As yet, it's not updated for PowerPoint 2007 but we highly recommend it for previous versions.

Some notes from Chirag, its author:

  • "A" means "All Users". So, a heading like "A 2000" would mean All Users of PowerPoint 2000 on the machine. A "Yes" for an add-in means this add-in is active for the corresponding version of PowerPoint.
  • "C" means "Current User". So, a heading like "C 2003" would mean the PowerPoint 2003 instance in the current user's account. A "Yes" in this column means this add-in is active for this user in the corresponding version of PowerPoint.
  • All sorts of combinations exist. Some add-ins are for PowerPoint 2000 for some users on the machine but not for some others (disabled), etc. Some add-ins are for some version of PowerPoint only, etc.

VBA can help, even with PowerPoint 2007

This bit of code will tell you what PPA addins are installed, including the ones that aren't on the Tools, Add-ins list. It will list some but not necessarily all COM add-ins as well.
Between this and the listing of COM add-ins you can get from Office Button, PowerPoint Options, Add-ins, you'll get a better picture of what add-ins are installed. It's still possible for COM add-ins to hide themselves from this list though.

Sub ListAddins()

    Dim oAddin As AddIn
    Dim oCOMAddin As COMAddIn
    Dim sAddins As String

    sAddins = "Standard Add-ins" & vbCrLf & "================" & vbCrLf
    For Each oAddin In Application.AddIns
        sAddins = sAddins & oAddin.Name & vbCrLf  & vbTab & oAddin.FullName & vbCrLf
    Next oAddin

    sAddins = sAddins & vbCrLf & "COM Add-ins" & vbCrLf & "============" & vbCrLf
    For Each oCOMAddin In Application.COMAddIns
        sAddins = sAddins & oCOMAddin.ProgID & vbCrLf & vbTab & oCOMAddin.Description & vbcrlf
    Next oCOMAddin

    MsgBox sAddins

End Sub

How do I use this code?

  1. Open a PowerPoint presentation
  2. Press ALT+F11 to start PowerPoint's VBA editor.
  3. In the VBA editor, make sure that your presentation is highlighted in the left-hand pane.
  4. Choose Insert, Module from the menu bar to insert a new code module.
  5. Copy the code from above and paste it into the new code module.
  6. Press F5 to run your code.

Tip: Once you see the messagebox that lists installed add-ins, press Ctrl+Shift+C to copy the info. You can then use Ctrl+V to paste it into an email or newsgroup reply, or paste into Notepad and print so you have a list for your own use.

How to disable or uninstall add-ins

Check with the add-in's author to learn of any special procedures you should follow.

In general, you can temporarily disable most add-ins by renaming their files. Quit PowerPoint then rename the PPA files from the list above; the simplest thing is to change their file extensions from .PPA to .PPB.


Page copy protected against web site content infringement by Copyscape Contents © 1995-2008 Stephen Rindsberg, Rindsberg Photography, Inc. and members of the MS PowerPoint MVP team. You may link to this page but any form of unauthorized reproduction of this page's contents is expressly forbidden.

Español    Deutsch    Français    Português    Italiano    Nederlands    Greek    Japanese    Korean    Chinese



Supercharge your PPT Productivity with PPTools


content authoring & site maintenance by
Friday, the automatic faq maker (logo)
Friday - The Automatic FAQ Maker

What add-ins are loaded?
http://www.pptfaq.com/FAQ00655.htm
Last update 13 August, 2008