PowerPoint
(1)
Office
(1)
VBA
(1)
PowerShow
(1)
AppData
(1)
Windows
(1)
Marie
(1)
Jean
(1)

Find the Powerpoint addins path with VBA ?

Asked By jm.almeras
28-Jan-10 05:55 PM
Dear VBA / Office experts,

Can anyone tell me how to find the path where addins are stored by
Powerpoint, especially when there are no addins which have been added yet
(otherwise it is easy : addins(1).Path)

Please note that when a Powerpoint user saves a presentation and chooses the
addin type (.ppa), Powerpoint automatically proposes the right folder for
saving the file. Where is the information stored as to that folder ?

Thank you

Jean-Marie

Add-ins can be stored anywhere, but it seems you are looking for the

Steve Rindsberg replied to jm.almeras
29-Jan-10 12:00 PM
Add-ins can be stored anywhere, but it seems you are looking for the default
add-ins path.  This may vary by version, so it'd be best to do a little testing
for each.

Start a new presentation, choose Save As and pick PPA or PPAM, as appropriate,
then note the path where PPT proposes to save it.

When I do this here in 2007 or 2003, it defaults to:

Documents and Settings\[username]\Application Data\Microsoft\AddIns

This is very locale dependent.

Chirag replied to jm.almeras
30-Jan-10 08:14 AM
This is very locale dependent. On English versions, this is located at:
Environ("AppData") + "\Microsoft\AddIns"

On French versions, it seems to be located at:
Environ("AppData") + "\Microsoft\Macros compl?mentaires"

- Chirag

PowerShow - View multiple PowerPoint slide shows simultaneously
http://officeone.mvps.org/powershow/powershow.html

I have added a function that correctly determines the Add-Ins folder in

Chirag replied to Chirag
30-Jan-10 09:21 AM
I have added a function that correctly determines the Add-Ins folder in all
Windows versions and all locales. Look at it at:
http://officeone.mvps.org/vba/addin_location.html

- Chirag

PowerShow - View multiple PowerPoint slide shows simultaneously
http://officeone.mvps.org/powershow/powershow.html
Thank you Chirag I could not hope for a better answer !
jm.almeras replied to Chirag
30-Jan-10 11:34 AM
Thank you Chirag I could not hope for a better answer !
Post Question To EggHeadCafe