Re: [WiX-users] Automatic updating an MSI installation under restricteduser account

2006-09-18 Thread Bob Arnson
Mike Dimmick wrote: > If you must use a service, install the service as manual start and use a > element under to allow the service to be > started and stopped by a non-privileged user. Then start the service to > perform the upgrade and stop it when you've finished (or perhaps have it > stop its

Re: [WiX-users] Automatic updating an MSI installation under restricteduser account

2006-09-18 Thread Mike Dimmick
WiX-users] Automatic updating an MSI installation under restricteduser account Jason Swager wrote: > But that was shot down on the principle that having the admin creds > ANYWHERE on the system in ANY fashion was unacceptable. But a 24/7 localsystem service is? Dilbert was right... --

Re: [WiX-users] Automatic updating an MSI installation under restricteduser account

2006-09-16 Thread Bob Arnson
Jason Swager wrote: > But that was shot down on the principle that having the admin creds > ANYWHERE on the system in ANY fashion was unacceptable. But a 24/7 localsystem service is? Dilbert was right... -- sig://boB http://bobs.org ---

Re: [WiX-users] Automatic updating an MSI installation under restricteduser account

2006-09-15 Thread Jason Swager
In this particular customer case - nope, admin credentials couldn't be on the system or in the hands of the restricted user.  I suggested that the credential be written to the system in some obscure, highly encrypted fashion during the initial install (which had to be done by an Admin), then used i

Re: [WiX-users] Automatic updating an MSI installation under restricteduser account

2006-09-14 Thread Bob Arnson
Jason Swager wrote: > Yep - I fully agree. But when the customer requires this in an > application - what else can you do? Fire the client. > Privelege escalation is a definite worry. In my solution, I used > named mutexs and encrypted memory mapped files using public/private > key encryptio

Re: [WiX-users] Automatic updating an MSI installation under restricteduser account

2006-09-14 Thread Jason Swager
Yep - I fully agree.  But when the customer requires this in an application - what else can you do?  Privelege escalation is a definite worry.  In my solution, I used named mutexs and encrypted memory mapped files using public/private key encryption via Windows CryptoAPI to trigger the installation

Re: [WiX-users] Automatic updating an MSI installation under restricteduser account

2006-09-14 Thread Bob Arnson
Jason Swager wrote: > This approach has some drawbacks. First, the possibly extra service > running all the time. Which is a source of potential security holes, especially privilege escalation as it's running 100 percent of the time as local system. It works, but it's a sledgehammer of a soluti

Re: [WiX-users] Automatic updating an MSI installation under restricteduser account

2006-09-14 Thread Jason Swager
This isn't supported as an MSI feature - but there is a way to do it.  There was an article somewhere on the MSDN that described it.  And I've seen the same practice used in a number of applications.The solution is to use a NT service.  If your application installs a service already, you can piggy-

Re: [WiX-users] Automatic updating an MSI installation under restricteduser account

2006-09-14 Thread Wilson, Phil
Sent: Thursday, September 14, 2006 9:41 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Automatic updating an MSI installation under restricteduser account Hi, what is the recommended way of updating/patching existing installation running the application under restricted user account only ? I