Supercharge your PowerPoint productivity with
|
PPTools |
ProblemYou 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 2007This 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:
VBA can help, even with PowerPoint 2007This 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.
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?
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-insCheck 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. Español Deutsch Français Português Italiano Nederlands Greek Japanese Korean Chinese |
Supercharge your PPT Productivity with PPTools
|
content authoring & site maintenance by |
What add-ins are loaded?
http://www.pptfaq.com/FAQ00655.htm
Last update 13 August, 2008