Re: [WiX-users] Calling CustomAction which requires Elevated Privileges from UI PushButton

2013-11-24 Thread Phil Wilson
rtificate Binding, give it a STORE_NAME, STORE_LOCATION and > Certificate Thumbprint along with a Web Site Name and Port Number and it'll > bind the certificate to the website. > > > Regards, > Bevan > > >Date: Sun, 24 Nov 2013 09:55:29 -0800 > >From: Bla

Re: [WiX-users] Calling CustomAction which requires Elevated Privileges from UI PushButton

2013-11-24 Thread Bevan Weiss
Date: Sun, 24 Nov 2013 09:55:29 -0800 >From: Blair Murri >Subject: Re: [WiX-users] Calling CustomAction which requires Elevated > Privileges from UI PushButton > >How about this idea: > >Let the user select a cert to use, or alternately, select to generate a self-signed cert.

Re: [WiX-users] Calling CustomAction which requires Elevated

2013-11-24 Thread Blair Murri
rollback, and a better user experience. -Blair > From: kaize...@hotmail.com > To: wix-users@lists.sourceforge.net > Date: Sun, 24 Nov 2013 17:57:57 +1100 > Subject: Re: [WiX-users] Calling CustomAction which requires Elevated > > Ok.. so it seems staying in the MSI process an

Re: [WiX-users] Calling CustomAction which requires Elevated Privileges from UI PushButton

2013-11-24 Thread Blair Murri
; blog entry for the general idea of immediate actions adding rows to tables. -Blair > Date: Sat, 23 Nov 2013 11:19:11 -0800 > From: phildgwil...@gmail.com > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] Calling CustomAction which requires Elevated > Privileges fro

Re: [WiX-users] Calling CustomAction which requires Elevated

2013-11-23 Thread Bevan Weiss
Ok.. so it seems staying in the MSI process and getting elevated privileges just isn't possible, which explains why this doesn't work at all (since it's using the 'immediate' execution, which runs in the MSI process).. Next plan... I'd like to create an executable which will perform this work, and

Re: [WiX-users] Calling CustomAction which requires Elevated Privileges from UI PushButton

2013-11-23 Thread Phil Wilson
The problem is that the UI sequence runs with installing user credentials, so if elevation is required it must come at launch time. If you were to shell execute an external process that asked for elevation it should work but the workflow would probably be terrible. This is one of those tasks that s