Re: [WiX-users] Where can I find the installer that was used

2012-11-19 Thread tyler.w.reid
Phil, Thank you so much I got all those functions PInvoked and working like a charm. Again thank you to everyone for all your wonderful help it is greatly appreciated. Tyler Reid | Operations and Infrastructure | Accenture Software | P&C Insurance 1807 Jones Street | Bolivar, MO 65613|

Re: [WiX-users] Where can I find the installer that was used.

2012-11-17 Thread Phil Wilson
toolset. Subject: Re: [WiX-users] Where can I find the installer that was used. Another option is to find the path in registry, in the Installer key. You will need to know the following information: * Product Code (or Upgrade Code and then find all products installed for it) * How to convert

Re: [WiX-users] Where can I find the installer that was used.

2012-11-15 Thread tyler.w.reid
Thank you all so much for the wonderful answers. As many of you have pointed out this may be more trouble that it is worth. However the main reason we are doing this is not to validate that the correct files were laid down, but to validate that the correct files were upgraded to the correct vers

Re: [WiX-users] Where can I find the installer that was used.

2012-11-15 Thread Fyodor Koryazhkin
Hi, This is not the trivial task. You should do the following to be most accurate: 1. Find path to cached local msi (MsiOpenProduct function) 2. Enumerate all patches for that product (MsiEnumPatches function) 3. Extract transforms from every patch 4. Apply each transform to product database (accor

Re: [WiX-users] Where can I find the installer that was used.

2012-11-15 Thread Peter Shirtcliffe
still be brought to light by normal functional testing. -Original Message- From: Rob Hamflett [mailto:rob_hamfl...@sn.scee.net] Sent: 15 November 2012 08:29 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Where can I find the installer that was used. Windows keeps a ca

Re: [WiX-users] Where can I find the installer that was used.

2012-11-15 Thread Philip Patrick
inal Message- From: Rob Hamflett [mailto:rob_hamfl...@sn.scee.net] Sent: Thursday, November 15, 2012 10:29 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Where can I find the installer that was used. Windows keeps a cached copy of the MSI in C:\Windows\Installer, if that's of a

Re: [WiX-users] Where can I find the installer that was used.

2012-11-15 Thread Rob Hamflett
Windows keeps a cached copy of the MSI in C:\Windows\Installer, if that's of any help. You could scan through the MSI files in there and check the properties for the one you want. Rob On 14/11/2012 20:51, tyler.w.r...@accenture.com wrote: > Hello all, > > I am trying to write an appli

[WiX-users] Where can I find the installer that was used.

2012-11-14 Thread tyler.w.reid
Hello all, I am trying to write an application that will go through the file table in an msi and make sure the files on the system are the same version and location. Basically a regression test for our installers. I have everything good except I have no idea how to find the installer th