Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Tim Richardson
 
Posts: n/a
Default Excel addins disappearing from addin manager

I use Excel 2000 on Windows XP in a corporate environment, on a laptop.
I load two addins (PUP v6 and autosafe). Every week or so, these addins
disappear from the addin manager and are therefore not loaded. I keep
the addins in a non-standard location, so I must browse to the correct
folder to add the addin to the addin manager. I have been doing this
for some years without a problem. The problems began when I moved
offices;I suspect it is change in the way my Windows files and settings
are handled between my laptop and the network file server.

If the addin settings are stored in the registry, then does this mean
something is happening to my registry settings?

My home directory is mapped to a network file server and is
synchronised using the Windows "make available offline" feature. I
suspect a problem with this although I have a non-roaming Windows
profile.

would appreciate some hints. For example, what files are linked to
Excel's handling of addin preferences? the .xlb file?

regards,

Tim

  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default

Could it be that the system administrators have a registry cleaning
application, that removes registry entries that are not 'approved'?

--
HTH

Bob Phillips

"Tim Richardson" wrote in message
ps.com...
I use Excel 2000 on Windows XP in a corporate environment, on a laptop.
I load two addins (PUP v6 and autosafe). Every week or so, these addins
disappear from the addin manager and are therefore not loaded. I keep
the addins in a non-standard location, so I must browse to the correct
folder to add the addin to the addin manager. I have been doing this
for some years without a problem. The problems began when I moved
offices;I suspect it is change in the way my Windows files and settings
are handled between my laptop and the network file server.

If the addin settings are stored in the registry, then does this mean
something is happening to my registry settings?

My home directory is mapped to a network file server and is
synchronised using the Windows "make available offline" feature. I
suspect a problem with this although I have a non-roaming Windows
profile.

would appreciate some hints. For example, what files are linked to
Excel's handling of addin preferences? the .xlb file?

regards,

Tim



  #3   Report Post  
Dave Peterson
 
Posts: n/a
Default

I think that all this stuff is stored in the registry.

And (just a guess) if you store the addins in a network folder which isn't
always available, maybe excel is turning it off--since it can't find them.

The next time you're connected to the network, excel doesn't go back and reset
these options. (It's not self-healing <bg.)

But maybe you could just add some code to your personal.xls auto_open procedure.

Option Explicit

Sub auto_open()

Dim myAddinNames As Variant
Dim testStr As String
Dim iCtr As Long
Dim EverythingOk As Boolean
Dim myAddin As AddIn

myAddinNames = Array("c:\my documents\excel\test1.xla", _
"c:\my
documents\excel\test2.xla")

EverythingOk = True
For iCtr = LBound(myAddinNames) To UBound(myAddinNames)
testStr = ""
On Error Resume Next
testStr = Dir(myAddinNames(iCtr))
On Error GoTo 0
If testStr = "" Then
'MsgBox myAddinNames(iCtr) & " Not found"
Beep
EverythingOk = False
Else
Set myAddin = AddIns.Add(Filename:=myAddinNames(iCtr))
myAddin.Installed = True
End If
Next iCtr

If EverythingOk = True Then
'do nothing
Else
MsgBox "At least one of the addins didn't load"
End If

'Thisworkbook.close savechanges:=false

End Sub

If you don't have a personal.xls, you could create a new workbook, put this code
into a general module, uncomment that "thisworkbook.close..." line and store the
workbook in your XLStart folder.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Tim Richardson wrote:

I use Excel 2000 on Windows XP in a corporate environment, on a laptop.
I load two addins (PUP v6 and autosafe). Every week or so, these addins
disappear from the addin manager and are therefore not loaded. I keep
the addins in a non-standard location, so I must browse to the correct
folder to add the addin to the addin manager. I have been doing this
for some years without a problem. The problems began when I moved
offices;I suspect it is change in the way my Windows files and settings
are handled between my laptop and the network file server.

If the addin settings are stored in the registry, then does this mean
something is happening to my registry settings?

My home directory is mapped to a network file server and is
synchronised using the Windows "make available offline" feature. I
suspect a problem with this although I have a non-roaming Windows
profile.

would appreciate some hints. For example, what files are linked to
Excel's handling of addin preferences? the .xlb file?

regards,

Tim


--

Dave Peterson
  #4   Report Post  
Tim Richardson
 
Posts: n/a
Default

Thanks Dave, what I will firstly do is lock the registry entries using
the privileges of being a local admin on my machine to see if network
administrator activity is the problem, then I will try adding code to
personal.xls

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Slight problem automating Excel in a service someone Setting up and Configuration of Excel 2 May 13th 05 10:04 PM
Installing: Microsoft Excel Feature Boblink Excel Discussion (Misc queries) 0 May 13th 05 05:41 PM
How do I set up report manager in Excel 2003?? Bill Excel Discussion (Misc queries) 4 April 14th 05 03:10 AM
Excel Scenario Manager should let me re-order scenarios (in the s. Jayson Beatty Excel Discussion (Misc queries) 0 December 2nd 04 08:25 PM
Report Manager in Excel 2002 Misha Excel Discussion (Misc queries) 2 November 28th 04 06:59 AM


All times are GMT +1. The time now is 02:29 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"