Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default xla Installation

Hi
I 'm trying to do a "per-machine" installation of an xla-Addin. How can this
be done?
Thanks for any hints!
Luc


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default xla Installation

Hi Luc,

Put the xla on a server and then install from there.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Luc Benninger" <lb (at) zignet.ch wrote in message
...
Hi
I 'm trying to do a "per-machine" installation of an xla-Addin. How can

this
be done?
Thanks for any hints!
Luc




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default xla Installation

Hi Bob, thanks for replying. Think I have the describe my problem a bit more
precisely.

We install software using a deployment tool. Currently I should distribute
an Excel add-in to all of our machines. To make sure the software is
installed independent from a user account, it should be installed on a "per
machine" basis (and not per user).

If Excel does not allow this, how can a xla-addin be installed per user but
without opening Excel? Are there any registry keys for doing this (like for
PowerPoint add-ins)?

thanks, Luc


"Bob Phillips" wrote in message
...
Hi Luc,

Put the xla on a server and then install from there.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Luc Benninger" <lb (at) zignet.ch wrote in message
...
Hi
I 'm trying to do a "per-machine" installation of an xla-Addin. How can

this
be done?
Thanks for any hints!
Luc






  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default xla Installation

Hi Luc,

When an addin is installed, it becomes part of the Excel client (or more
precisely, there is a link to the xla file within
Excel, which if the addin is checked in the addins list, it is loaded each
time Excel starts, or when the item is checked).

Problem with the registry, apart from the health warnings which I am sure
that you are more than cognisant of, is that the registry entries are
re-built by Excel depending upon the addins list.

As I presume that you will load the physical xla file on the server, you
should have no problems wit the per machine basis.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Luc Benninger" <lb (at) zignet.ch wrote in message
...
Hi Bob, thanks for replying. Think I have the describe my problem a bit

more
precisely.

We install software using a deployment tool. Currently I should distribute
an Excel add-in to all of our machines. To make sure the software is
installed independent from a user account, it should be installed on a

"per
machine" basis (and not per user).

If Excel does not allow this, how can a xla-addin be installed per user

but
without opening Excel? Are there any registry keys for doing this (like

for
PowerPoint add-ins)?

thanks, Luc


"Bob Phillips" wrote in message
...
Hi Luc,

Put the xla on a server and then install from there.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Luc Benninger" <lb (at) zignet.ch wrote in message
...
Hi
I 'm trying to do a "per-machine" installation of an xla-Addin. How can

this
be done?
Thanks for any hints!
Luc








  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default xla Installation

Thanks again Bob, but putting the add-in file on a server won't work, as we
got lots of laptop users which must be able to work offline. Also I can not
tell each user to manually add the add-in using "Tools / AddIns" nor do it
personally (about 8000 machines worldwide...).
Right now our software deployment tool copies all project files onto users
harddisk and creates a link to the xla-file in the global excel startup
folder ({program files}/microsoft office/officeXX/xlstart. I just wasn't
sure if there are no side effects doing this or even a better solution.
Luc

"Bob Phillips" wrote in message
...
Hi Luc,

When an addin is installed, it becomes part of the Excel client (or more
precisely, there is a link to the xla file within
Excel, which if the addin is checked in the addins list, it is loaded

each
time Excel starts, or when the item is checked).

Problem with the registry, apart from the health warnings which I am sure
that you are more than cognisant of, is that the registry entries are
re-built by Excel depending upon the addins list.

As I presume that you will load the physical xla file on the server, you
should have no problems wit the per machine basis.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Luc Benninger" <lb (at) zignet.ch wrote in message
...
Hi Bob, thanks for replying. Think I have the describe my problem a bit

more
precisely.

We install software using a deployment tool. Currently I should

distribute
an Excel add-in to all of our machines. To make sure the software is
installed independent from a user account, it should be installed on a

"per
machine" basis (and not per user).

If Excel does not allow this, how can a xla-addin be installed per user

but
without opening Excel? Are there any registry keys for doing this (like

for
PowerPoint add-ins)?

thanks, Luc


"Bob Phillips" wrote in message
...
Hi Luc,

Put the xla on a server and then install from there.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Luc Benninger" <lb (at) zignet.ch wrote in message
...
Hi
I 'm trying to do a "per-machine" installation of an xla-Addin. How

can
this
be done?
Thanks for any hints!
Luc












  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default xla Installation

Hi Luc,

I see what you are doing, in effect you are not installing the add-in, but
just have xla load as per an xls in the startup , thereby getting it to
automatically load. Neat trick, but don't you have the add-in problem that
XLStart is a user specific directory, that is every user on the machine has
their own (at least it is in XP)..

As I mis-led you a bit earlier, add-ins are user specific as it is a link
that is set-up not the file added to Excel, I think your approach is the
best I can think of at present. You can script installing it, but I could
get this to work as a VBA script, but not as a VBS/WSH script (probably
because of the user issue). I will continue to look at it and if I get
anything I will drop you a line direct.

Best of luck

Bob

"Luc Benninger" <lb (at) zignet.ch wrote in message
...
Thanks again Bob, but putting the add-in file on a server won't work, as

we
got lots of laptop users which must be able to work offline. Also I can

not
tell each user to manually add the add-in using "Tools / AddIns" nor do it
personally (about 8000 machines worldwide...).
Right now our software deployment tool copies all project files onto users
harddisk and creates a link to the xla-file in the global excel startup
folder ({program files}/microsoft office/officeXX/xlstart. I just wasn't
sure if there are no side effects doing this or even a better solution.
Luc

"Bob Phillips" wrote in message
...
Hi Luc,

When an addin is installed, it becomes part of the Excel client (or more
precisely, there is a link to the xla file within
Excel, which if the addin is checked in the addins list, it is loaded

each
time Excel starts, or when the item is checked).

Problem with the registry, apart from the health warnings which I am

sure
that you are more than cognisant of, is that the registry entries are
re-built by Excel depending upon the addins list.

As I presume that you will load the physical xla file on the server, you
should have no problems wit the per machine basis.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Luc Benninger" <lb (at) zignet.ch wrote in message
...
Hi Bob, thanks for replying. Think I have the describe my problem a

bit
more
precisely.

We install software using a deployment tool. Currently I should

distribute
an Excel add-in to all of our machines. To make sure the software is
installed independent from a user account, it should be installed on a

"per
machine" basis (and not per user).

If Excel does not allow this, how can a xla-addin be installed per

user
but
without opening Excel? Are there any registry keys for doing this

(like
for
PowerPoint add-ins)?

thanks, Luc


"Bob Phillips" wrote in message
...
Hi Luc,

Put the xla on a server and then install from there.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Luc Benninger" <lb (at) zignet.ch wrote in message
...
Hi
I 'm trying to do a "per-machine" installation of an xla-Addin. How

can
this
be done?
Thanks for any hints!
Luc












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
Installation Issues busydeb Excel Discussion (Misc queries) 1 April 6th 10 08:12 PM
Christmas Lights Installation Los Angeles, Beverly Hills, SantaMonica, Culver City, Marina Del Rey, Calabasas, Agoura Hills Thousand OaksHoliday Lights Installation 1-310-925-1720 info Excel Worksheet Functions 0 November 15th 08 02:30 AM
Enabling Add-Ins during Installation Paul Butler Setting up and Configuration of Excel 0 May 13th 08 09:23 AM
Installation from backups ROBERT Setting up and Configuration of Excel 2 June 1st 07 07:12 PM
Installation Error Premnath Excel Discussion (Misc queries) 1 September 6th 06 01:49 PM


All times are GMT +1. The time now is 07:58 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"