Thanks for your reply.

Yes, I am infact doing the  per-machine mode for creating the UnInstall 
shortcut . But the problem with HKCU key is, it wouldnt let met do 
Advertise="Yes". Without advertise, my uninstall shortcut will not be removed 
on uninstallation , when there more than one version of product is installed. 
This is where I am stuck at the moment.

thanks again
Arun V

********************************>The first link talk about creating an 
uninstall shortcut for per-user
>OR per-machine mode depending on your ALLUSER property. The HKCU key
>is necessary for ICE validation.
>The second link works for me. It explains how to create regular
>shorcut instead of advertised one. It answer your second question.



 *********************************
Arun Kumar
"The Distance between heaven and earth, is not a matter of 
Altitude, but ATTITUDE"




________________________________
From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
To: wix-users@lists.sourceforge.net
Sent: Thursday, October 30, 2008 8:43:41 PM
Subject: WiX-users Digest, Vol 29, Issue 236

Send WiX-users mailing list submissions to
    wix-users@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
    https://lists.sourceforge.net/lists/listinfo/wix-users
or, via email, send a message with subject or body 'help' to
    [EMAIL PROTECTED]

You can reach the person managing the list at
    [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of WiX-users digest..."


Today's Topics:

   1.  Major , minor upgrade? Please HELP (webdefence)
   2. (no subject) (Alan Sinclair)
   3. Re: (no subject) (Alan Sinclair)
   4. Invoking managed console application as Custom Action (ajay)
   5. Re: Shortcuts created in ALLUSER mode invokes MSI0
      ( S?bastien Mouren )
   6. Re: uninstall per user product (hyung)


----------------------------------------------------------------------

Message: 1
Date: Thu, 30 Oct 2008 15:12:38 -0700 (PDT)
From: webdefence <[EMAIL PROTECTED]>
Subject: [WiX-users]  Major , minor upgrade? Please HELP
To: wix-users@lists.sourceforge.net
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=us-ascii


Hi Guys

I have a question about upgrade , please explain me , coz i cant understand
how to organize this :confused:
Ok , what i have.

one product , with different language packs , i mean i have 3 different
msi's , with same GUID , each one support one language , each one could be
installed separately , but when installing one on other , just additional
language need to be added to product without uninstalling other. Guys ,
please explain if it possibe to do this , i've read msdn articles about
major , minor update ... but as i understand both of them are not siutable
for my task.

For example i've installed product with English lang suport , then I've
downloaded msi with Greek lang support, what i need to do(in WIX) that greek
could upgrade my English version (add couple .chm,and xml files) , and in
the same time
when I am installing greek first , and then English , english package could
upgrade greek version.

Please any link , or explanation ...



:working::working:
-- 
View this message in context: 
http://n2.nabble.com/Major-%2C-minor-upgrade--Please-HELP-tp1400713p1400713.html
Sent from the wix-users mailing list archive at Nabble.com.




------------------------------

Message: 2
Date: Thu, 30 Oct 2008 15:19:38 -0700
From: "Alan Sinclair" <[EMAIL PROTECTED]>
Subject: [WiX-users] (no subject)
To: "General discussion for Windows Installer XML toolset."
    <wix-users@lists.sourceforge.net>
Message-ID:
    <[EMAIL PROTECTED]>
Content-Type: text/plain;    charset="us-ascii"

Can someone please tell me how to specify the data for a registry
Type="multiString" value?

I've got a reg file entry like this
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MyDev\Parameters]
"IMOrder"=hex(7):73,00,63,00,68,00,65,00,64,00,75,00,6c,00,65,00,72,00,0
0,00,\

6c,00,6f,00,61,00,64,00,62,00,61,00,6c,00,61,00,6e,00,63,00,65,00,00,00,
44,\

00,6c,00,74,00,00,00,66,00,61,00,69,00,6c,00,6f,00,76,00,65,00,72,00,00,
00,6f,\
  00,74,00,68,00,65,00,72,00,73,00,00,00,00,00

And have got this far with the .wxs code:
        <Component Id="MyIMOrder"
Guid="{8D1614F0-C44E-4153-A610-BF3537685F5E}" DiskId="1">
          <Registry Id="IMOrder" Root="HKLM" Action="write"
KeyPath="yes"

Key="SYSTEM\CurrentControlSet\Services\MyDev\Parameters"
                    Name="IMOrder" Type="multiString"/>
        </Component>

But I can't figure out how the Value should be specified.
thanks



------------------------------

Message: 3
Date: Thu, 30 Oct 2008 15:32:41 -0700
From: "Alan Sinclair" <[EMAIL PROTECTED]>
Subject: Re: [WiX-users] (no subject)
To: "General discussion for Windows Installer XML toolset."
    <wix-users@lists.sourceforge.net>
Message-ID:
    <[EMAIL PROTECTED]>
Content-Type: text/plain;    charset="us-ascii"

hopefully this is it:

          <Registry Id="MyIMOrder" 
                    Root="HKLM" Action="write" KeyPath="yes"

Key="SYSTEM\CurrentControlSet\Services\MyDev\Parameters"
                    Name="IMOrder" 
                    Type="multiString">            
             <RegistryValue>scheduler</RegistryValue>
             <RegistryValue>loadbalance</RegistryValue>
             <RegistryValue>DNE</RegistryValue>
             <RegistryValue>FW1</RegistryValue>
             <RegistryValue>Eacfilt</RegistryValue>
             <RegistryValue>failover</RegistryValue>
             <RegistryValue>others</RegistryValue>
          </Registry 


________________________________

From: Alan Sinclair 
Sent: Thursday, October 30, 2008 3:20 PM
To: General discussion for Windows Installer XML toolset.
Subject: 


Can someone please tell me how to specify the data for a registry
Type="multiString" value?

I've got a reg file entry like this
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MyDev\Parameters]
"IMOrder"=hex(7):73,00,63,00,68,00,65,00,64,00,75,00,6c,00,65,00,72,00,0
0,00,\

6c,00,6f,00,61,00,64,00,62,00,61,00,6c,00,61,00,6e,00,63,00,65,00,00,00,
44,\

00,6c,00,74,00,00,00,66,00,61,00,69,00,6c,00,6f,00,76,00,65,00,72,00,00,
00,6f,\
  00,74,00,68,00,65,00,72,00,73,00,00,00,00,00

And have got this far with the .wxs code:
        <Component Id="MyIMOrder"
Guid="{8D1614F0-C44E-4153-A610-BF3537685F5E}" DiskId="1">
          <Registry Id="IMOrder" Root="HKLM" Action="write"
KeyPath="yes"

Key="SYSTEM\CurrentControlSet\Services\MyDev\Parameters"
                    Name="IMOrder" Type="multiString"/>
        </Component>

But I can't figure out how the Value should be specified.
thanks



------------------------------

Message: 4
Date: Thu, 30 Oct 2008 15:53:45 -0700 (PDT)
From: ajay <[EMAIL PROTECTED]>
Subject: [WiX-users] Invoking managed console application as Custom
    Action
To: wix-users@lists.sourceforge.net
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=us-ascii


Hi, 
I have managed console application which I am trying to invoke from custom
action within WIX file (CA type 50). It always fails with Error 1721. I can
run the the generated command (with args) from cmd window. 

Does Windows Installer even supports calling managed cmd line apps from CA?
What are the alternatives? 

The managed app I am trying to invoke is vsdbcmd (cmd line tool that ships
with VSTS DBPro and can be used to deploy/schema-compare databases). 

Thanks. 
Ajay 

-- 
View this message in context: 
http://n2.nabble.com/Invoking-managed-console-application-as-Custom-Action-tp1400828p1400828.html
Sent from the wix-users mailing list archive at Nabble.com.




------------------------------

Message: 5
Date: Fri, 31 Oct 2008 00:51:51 +0100
From: " S?bastien Mouren " <[EMAIL PROTECTED]>
Subject: Re: [WiX-users] Shortcuts created in ALLUSER mode invokes
    MSI0
To: "General discussion for Windows Installer XML toolset."
    <wix-users@lists.sourceforge.net>
Message-ID:
    <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=UTF-8

2008/10/30 Arun Kumar A V <[EMAIL PROTECTED]>:
>
>
> The First link below, only talks about Uninstall shortcut for per-user mode, 
> this is what i followed to get to where iam now.
> The Second link doesnt work. I did do extensive search on the mailing list 
> before posting it here  again.
>
> Any other ideas would help.thanks
> Arun
>
The first link talk about creating an uninstall shortcut for per-user
OR per-machine mode depending on your ALLUSER property. The HKCU key
is necessary for ICE validation.
The second link works for me. It explains how to create regular
shorcut instead of advertised one. It answer your second question.



------------------------------

Message: 6
Date: Thu, 30 Oct 2008 17:43:35 -0700 (PDT)
From: hyung <[EMAIL PROTECTED]>
Subject: Re: [WiX-users] uninstall per user product
To: wix-users@lists.sourceforge.net
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=us-ascii


Thank you very much for the detail information.

Thanks,
Hyung


Buddell, James wrote:
> 
> MsiZap is sort of a last resort tool. What you should do is uninstall
> for any accounts that you have access to, and then if the machines still
> have product registrations under other inaccessible profiles that are
> stopping you from doing your new install, then you use MsiZap to wipe
> the machine clean of those registrations. Basically, it'll wipe out the
> HKCR\Installer and
> HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer data for the
> specified package. The user profiles for those inaccessible accounts
> aren't so relevant because, by definition, they're inaccessible and
> won't be used again. You can even delete any cached profiles for users
> who have left if you like.
> 
> BTW, to see which user accounts are affected,
> HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData
> contains the details of who has which packages installed. It's by
> UserSID, with the system account being the short SID. You can look under
> each user's key to see the Components, Products and Patches they have
> installed. Under Products the ProductCode is packed - brackets and
> hyphens removed and various characters switched around, have a search
> online to find out more details.
> 
> Another way to achieve all this may be to change the UpgradeCode of your
> product. Not best practices, and not at all good if the product is
> externally released, but if it's a package that's internal to your
> organisation then that might do the trick. Though the component
> reference counting wouldn't be right, so it wouldn't all uninstall if
> you removed the package.
> 
> Cheers,
> James
> 
> -----Original Message-----
> From: hyung [mailto:[EMAIL PROTECTED] 
> Sent: 30 October 2008 06:04
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] uninstall per user product
> 
> 
> Thanks everyone for the help. I have managed to detect all users who
> ever installed our product using MsiEnumProductsEx and
> LookupAccountSidW. Now I am facing another challenging problem - how do
> we uninstall all per-user installations? If some accounts are no longer
> accessible, what can we do?
> 
> Question: 
> Can I use MsiZap to remove all per-user installations? I have tried
> "MsiZap TW! {productGuid} but according to the help W option requires
> that the profiles for all of the users be loaded. Anyone knows how to
> load all users'
> profile so that I can use "MsiZap TW! {productGuid}" to remove all
> per-user installations?
> 
> Any hints will be much appreciated.
> 
> Thanks,
> Hyung
> 
> 
> Buddell, James wrote:
>> 
>> Tidying up per-user installs is almost impossible, especially when 
>> some users might have left your business so their accounts are no 
>> longer accessible. I try not to use it, but there's always MSIZap...
>> 
>> -----Original Message-----
>> From: Ian Elliott (Excell Data Corporation) 
>> [mailto:[EMAIL PROTECTED]
>> Sent: 24 October 2008 18:46
>> To: General discussion for Windows Installer XML toolset.
>> Subject: Re: [WiX-users] uninstall per user product
>> 
>> It won't uninstall. Just detects then allows you to put a message up 
>> and advise the user to uninstall the old per-user app then re-run
> setup.
>> 
>> I think you are correct that user needs to be admin to run this.
>> 
>> -----Original Message-----
>> From: Rob Mensching [mailto:[EMAIL PROTECTED]
>> Sent: Friday, October 24, 2008 10:44 AM
>> To: General discussion for Windows Installer XML toolset.
>> Subject: Re: [WiX-users] uninstall per user product
>> 
>> Only when admin right?  And this won't uninstall right?  I think you'd
> 
>> need to load all the user's profiles to uninstall per-user
> applications.
>> Loading user profiles is tricky from what I've heard.
>> 
>> -----Original Message-----
>> From: Ian Elliott (Excell Data Corporation) 
>> [mailto:[EMAIL PROTECTED]
>> Sent: Friday, October 24, 2008 10:41
>> To: General discussion for Windows Installer XML toolset.
>> Subject: Re: [WiX-users] uninstall per user product
>> 
>> I've used a custom action to do something similar in the past. A 
>> stripped down version of the code is below. I can't guarantee 100% 
>> effectiveness but it worked for my needs at the time.
>> 
>> UINT __stdcall FunctionName (MSIHANDLE hMsi) {
>>     UINT uiStatus = ERROR_SUCCESS;
>> 
>>     WriteToLog( hMsi, _T("Entering"));
>> 
>>     uiStatus = MsiEnumProductsEx(
>>         _T("{PUT_GUID_HERE}"), // product code to search for
>>         _T("s-1-1-0"), // search all users
>>         MSIINSTALLCONTEXT_USERMANAGED | 
>> MSIINSTALLCONTEXT_USERUNMANAGED
>> | MSIINSTALLCONTEXT_MACHINE, // search all users
>>         0,
>>         NULL,
>>         NULL,
>>         NULL,
>>         NULL);
>> 
>> 
>> 
>>     if (uiStatus == ERROR_SUCCESS) // Product was found
>>     {
>>         MSIHANDLE hError = MsiCreateRecord(1);
>>         MsiRecordSetInteger(hError, 1, 2001); // Use code 2001 from 
>> the msi's Error table. Author 2001 in wix file.
>>         MsiProcessMessage(hMsi, INSTALLMESSAGE_ERROR, hError);
>>     }
>>     else // we didn't find the Product
>>     {
>>         WriteToLog( hMsi, _T("Product not found"));
>>     }
>> 
>>     WriteToLog( hMsi, _T("Leaving"));
>>     return uiStatus;
>> }
>> 
>> -----Original Message-----
>> From: Rob Mensching [mailto:[EMAIL PROTECTED]
>> Sent: Friday, October 24, 2008 10:36 AM
>> To: General discussion for Windows Installer XML toolset.
>> Subject: Re: [WiX-users] uninstall per user product
>> 
>> Sounds very difficult to do correctly.  Lots of complicated stuff in 
>> there from what I've heard.
>> 
>> -----Original Message-----
>> From: hyung [mailto:[EMAIL PROTECTED]
>> Sent: Friday, October 24, 2008 09:18
>> To: wix-users@lists.sourceforge.net
>> Subject: Re: [WiX-users] uninstall per user product
>> 
>> 
>> Thanks for the answer.
>> 
>> Any hints on how I can find who installed? I need to provide an 
>> uninstall utility which removes prior versions.
>> 
>> Thanks,
>> Hyung
>> 
>> 
>> Rob Mensching-2 wrote:
>>>
>>> I believe you'd have to log in as each user and execute the installer
> 
>>> as that user.
>>>
>>> -----Original Message-----
>>> From: hyung [mailto:[EMAIL PROTECTED]
>>> Sent: Thursday, October 23, 2008 23:47
>>> To: wix-users@lists.sourceforge.net
>>> Subject: [WiX-users] uninstall per user product
>>>
>>>
>>> Hi all,
>>>
>>> I have changed the product install type from per-user to per-machine 
>>> and want to uninstall prior per-user installs. According to the 
>>> archived emails it seems I need to write an uninstall utilitiy to 
>>> remove all products installed by users. My question is "How can I 
>>> find
>> 
>>> all users who installed the prior version?"
>>>
>>> We have used a same product id so I can detect whether the prior 
>>> version is installed or not by checking:
>>> HLKM\Software\Microsoft\Windows\CurrentVersion\Uninstall\{productid}
>>> However as only a user who installed the prior version can uninstall 
>>> it, I need to find a list of users who installed the prior version. 
>>> Is
>> 
>>> there any Windows Installer API that supports this kind of scenario? 
>>> Any hints will be appreciated.
>>>
>>> Thanks,
>>> Hyung
>>>
>>> --
>>> View this message in context:
>>> http://n2.nabble.com/uninstall-per-user-product-tp1371127p1371127.htm
>>> l Sent from the wix-users mailing list archive at Nabble.com.
>>>
>>>
>>> ---------------------------------------------------------------------
>>> -
>>> --- This SF.Net email is sponsored by the Moblin Your Move 
>>> Developer's
>> 
>>> challenge Build the coolest Linux based applications with Moblin SDK 
>>> &
>> 
>>> win great prizes Grand prize is a trip for two to an Open Source 
>>> event
>> 
>>> anywhere in the world
>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>>> _______________________________________________
>>> WiX-users mailing list
>>> WiX-users@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>>
>>>
>>> ---------------------------------------------------------------------
>>> -
>>> --- This SF.Net email is sponsored by the Moblin Your Move 
>>> Developer's
>> 
>>> challenge Build the coolest Linux based applications with Moblin SDK 
>>> &
>> 
>>> win great prizes Grand prize is a trip for two to an Open Source 
>>> event
>> 
>>> anywhere in the world
>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>>> _______________________________________________
>>> WiX-users mailing list
>>> WiX-users@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>>
>>>
>> 
>> --
>> View this message in context:
>> http://n2.nabble.com/uninstall-per-user-product-tp1371127p1372635.html
>> Sent from the wix-users mailing list archive at Nabble.com.
>> 
>> 
>> ----------------------------------------------------------------------
>> --
>> -
>> This SF.Net email is sponsored by the Moblin Your Move Developer's 
>> challenge Build the coolest Linux based applications with Moblin SDK &
> 
>> win great prizes Grand prize is a trip for two to an Open Source event
> 
>> anywhere in the world 
>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>> _______________________________________________
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>> 
>> 
>> ----------------------------------------------------------------------
>> --
>> -
>> This SF.Net email is sponsored by the Moblin Your Move Developer's 
>> challenge Build the coolest Linux based applications with Moblin SDK &
> 
>> win great prizes Grand prize is a trip for two to an Open Source event
> 
>> anywhere in the world 
>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>> _______________________________________________
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>> 
>> 
>> ----------------------------------------------------------------------
>> --
>> -
>> This SF.Net email is sponsored by the Moblin Your Move Developer's 
>> challenge Build the coolest Linux based applications with Moblin SDK &
> 
>> win great prizes Grand prize is a trip for two to an Open Source event
> 
>> anywhere in the world 
>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>> _______________________________________________
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>> 
>> 
>> ----------------------------------------------------------------------
>> --
>> -
>> This SF.Net email is sponsored by the Moblin Your Move Developer's 
>> challenge Build the coolest Linux based applications with Moblin SDK &
> 
>> win great prizes Grand prize is a trip for two to an Open Source event
> 
>> anywhere in the world 
>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>> _______________________________________________
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>> 
>> 
>> ----------------------------------------------------------------------
>> --
>> -
>> This SF.Net email is sponsored by the Moblin Your Move Developer's 
>> challenge Build the coolest Linux based applications with Moblin SDK &
> 
>> win great prizes Grand prize is a trip for two to an Open Source event
> 
>> anywhere in the world 
>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>> _______________________________________________
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>> 
>> 
>> --
>> This e-mail is confidential and the information contained in it may be
> 
>> privileged.  It should not be read, copied or used by anyone other 
>> than the intended recipient.  If you have received it in error, please
> 
>> contact the sender immediately by telephoning +44 (0)20 7623 8000 or 
>> by return email, and delete the e-mail and do not disclose its 
>> contents to any person.  We believe, but do not warrant, that this 
>> e-mail and any attachments are virus free, but you must take full 
>> responsibility for virus checking.  Please refer to 
>> http://www.dresdnerkleinwort.com/disc/email/ and read our e-mail 
>> disclaimer statement and monitoring policy.
>> 
>> Dresdner Kleinwort is the trading name of the investment banking 
>> division of Dresdner Bank AG, and operates through Dresdner Bank AG, 
>> Dresdner Kleinwort Limited and their affiliated or associated 
>> companies.  Dresdner Bank AG is a company incorporated in Germany with
> 
>> limited liability and registered in England (registered no. FC007638, 
>> place of business 30 Gresham Street, London EC2V 7PG), and is 
>> authorised by the German Federal Financial Supervisory Authority and 
>> by the Financial Services Authority
>> ('FSA') and regulated by the FSA for the conduct of designated 
>> business in the UK.  Dresdner Kleinwort Limited is a company 
>> incorporated in England (registered no. 551334, registered office 30 
>> Gresham Street, London EC2V 7PG), and is authorised and regulated by
> the FSA.
>> 
>> 
>> ----------------------------------------------------------------------
>> --- This SF.Net email is sponsored by the Moblin Your Move Developer's
> 
>> challenge Build the coolest Linux based applications with Moblin SDK &
> 
>> win great prizes Grand prize is a trip for two to an Open Source event
> 
>> anywhere in the world 
>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>> _______________________________________________
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>> 
>> 
> 
> --
> View this message in context:
> http://n2.nabble.com/uninstall-per-user-product-tp1371127p1397042.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> 
> ------------------------------------------------------------------------
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 
> --
> This e-mail is confidential and the information contained in it may be
> privileged.  It should not be read, copied or used by anyone other than
> the intended recipient.  If you have received it in error, please contact
> the sender immediately by telephoning +44 (0)20 7623 8000 or by return
> email, and delete the e-mail and do not disclose its contents to any
> person.  We believe, but do not warrant, that this e-mail and any
> attachments are virus free, but you must take full responsibility for
> virus checking.  Please refer to
> http://www.dresdnerkleinwort.com/disc/email/ and read our e-mail
> disclaimer statement and monitoring policy.
> 
> Dresdner Kleinwort is the trading name of the investment banking division
> of Dresdner Bank AG, and operates through Dresdner Bank AG, Dresdner
> Kleinwort Limited and their affiliated or associated companies.  Dresdner
> Bank AG is a company incorporated in Germany with limited liability and
> registered in England (registered no. FC007638, place of business 30
> Gresham Street, London EC2V 7PG), and is authorised by the German Federal
> Financial Supervisory Authority and by the Financial Services Authority
> ('FSA') and regulated by the FSA for the conduct of designated business in
> the UK.  Dresdner Kleinwort Limited is a company incorporated in England
> (registered no. 551334, registered office 30 Gresham Street, London EC2V
> 7PG), and is authorised and regulated by the FSA.  
> 
> 
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 

-- 
View this message in context: 
http://n2.nabble.com/uninstall-per-user-product-tp1371127p1401285.html
Sent from the wix-users mailing list archive at Nabble.com.




------------------------------

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/

------------------------------

_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


End of WiX-users Digest, Vol 29, Issue 236
******************************************



      
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to