It will take a lot of work. You'd have to store the value of the 
registry key (in another registry key?) then on uninstall have a way to 
write the key back. Lots of tricky work to get done well.

I'd recommend doing work to remove the requirement to restore the 
registry keys.

zhihai guo wrote:
> Hi Rob
>
> I want restore registry value when uninstall that is modified on install.
> That code can not work?
>
> Thank you.
>
> 2009/6/6 zhihai guo <zhh...@gmail.com>
>
>   
>> I am sorry, this code does't work on rollback.
>> I am the newer in WIX. but the follow code maybe can help you for rollback.
>>
>> URL:http://code.google.com/p/videobrowser/source/browse/trunk/VideoBrowser2/Setup/Setup.wxs?r=52<http://code.google.com/p/videobrowser/source/browse/trunk/VideoBrowser2/Setup/Setup.wxs?r=52>
>>   <!-- RegisterMceApp.exe on the system. -->
>>  <CustomAction Id="CA_RegisterMceApp_Unregister_Install_Cmd"
>> Property="CA_RegisterMceApp_Unregister_Install"
>> Value="&quot;[REGISTERMCEAPP]&quot; /u /allusers
>> &quot;[#Registration.xml]&quot;"/>
>>  <CustomAction Id="CA_RegisterMceApp_Unregister_Uninstall_Cmd"
>> Property="CA_RegisterMceApp_Unregister_Uninstall"
>> Value="&quot;[REGISTERMCEAPP]&quot; /u /allusers
>> &quot;[#Registration.xml]&quot;"/>
>>  <CustomAction Id="CA_RegisterMceApp_Register_Cmd"
>> Property="CA_RegisterMceApp_Register" Value="&quot;[REGISTERMCEAPP]&quot;
>> /allusers &quot;[#Registration.xml]&quot;"/>
>>  <CustomAction Id="CA_RegisterMceApp_Rollback_Cmd"
>> Property="CA_RegisterMceApp_Rollback" Value="&quot;[REGISTERMCEAPP]&quot; /u
>> /allusers &quot;[#Registration.xml]&quot;"/>
>>
>>  <CustomAction Id="CA_RegisterMceApp_Unregister_Install" BinaryKey="WixCA"
>> DllEntry="CAQuietExec" Execute="deferred" Return="ignore" Impersonate="no"/>
>>  <CustomAction Id="CA_RegisterMceApp_Unregister_Uninstall"
>> BinaryKey="WixCA" DllEntry="CAQuietExec" Execute="deferred" Return="ignore"
>> Impersonate="no"/>
>>  <CustomAction Id="CA_RegisterMceApp_Register" BinaryKey="WixCA"
>> DllEntry="CAQuietExec" Execute="deferred" Return="check" Impersonate="no"/>
>>  <CustomAction Id="CA_RegisterMceApp_Rollback" BinaryKey="WixCA"
>> DllEntry="CAQuietExec" Execute="rollback" Return="ignore" Impersonate="no"/>
>>  <InstallExecuteSequence>
>>
>>   <Custom Action="CA_RegisterMceApp_Unregister_Install"
>> After="CA_RegisterMceApp_Rollback">
>>  <![CDATA[NOT REMOVE]]>
>>  </Custom>
>> </InstallExecuteSequence>
>>
>>
>> 2009/6/6 Rob Mensching <r...@wixtoolset.org>
>>
>> That doesn't look like it will handle rollback. Doesn't look like it
>>     
>>> will reference count those registry keys correctly either.
>>>
>>> zhihai guo wrote:
>>>       
>>>> Do this custom atction before RemoveFiles.
>>>> </InstallExecuteSequence>
>>>> ...   <Custom Action="CA_SetRegistry_Cmd" Before="RemoveFiles">
>>>>    <![CDATA[REMOVE]]>
>>>>  </Custom>
>>>> ...
>>>> </InstallExecuteSequence>
>>>>
>>>>
>>>>
>>>> 2009/6/5 Rob Mensching <r...@wixtoolset.org>
>>>>
>>>>
>>>>         
>>>>> How does that handle rollback and uninstall?
>>>>>
>>>>> zhihai guo wrote:
>>>>>
>>>>>           
>>>>>> Hi.
>>>>>>
>>>>>> I have resolved this problem.
>>>>>>
>>>>>> <CustomAction Id="CA_SetRegistry_Cmd" Property="CA_SetRegistry"
>>>>>> Value="C:\windows\system32\reg.exe  import &quot;[#Itest.reg]&quot;
>>>>>> /reg:64"/>
>>>>>>
>>>>>> ^^^^^^^
>>>>>>
>>>>>> Thanks.
>>>>>> 2009/6/5 zhihai guo <zhh...@gmail.com>
>>>>>>
>>>>>>
>>>>>>
>>>>>>             
>>>>>>> Hi every one:
>>>>>>>
>>>>>>> I have create a custom action to restore registry value when
>>>>>>>               
>>> uninstall
>>>       
>>>>> that
>>>>>
>>>>>           
>>>>>>> is modified on install.
>>>>>>>
>>>>>>> This is the element of CustomAction:
>>>>>>>  <CustomAction Id="CA_SetRegistry_Cmd" Property="CA_SetRegistry"
>>>>>>> Value="C:\windows\system32\reg.exe  import
>>>>>>>               
>>> &quot;[#Itest.reg]&quot;"/>
>>>       
>>>>>>>  <CustomAction Id="CA_SetRegistry" BinaryKey="WixCA"
>>>>>>>
>>>>>>>               
>>>>> DllEntry="CAQuietExec"
>>>>>
>>>>>           
>>>>>>> Execute="deferred" Return="ignore" Impersonate="no"/>
>>>>>>> This is the test.reg
>>>>>>>
>>>>>>> Windows Registry Editor Version 5.00
>>>>>>>
>>>>>>> [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Media
>>>>>>> Center\Start Menu]
>>>>>>> "HideDVD"=dword:00000000
>>>>>>>
>>>>>>> But the
>>>>>>>
>>>>>>>
>>>>>>>               
>>> HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Media
>>>       
>>>>>>> Center\Start Menu\HideDVD is set to 0 on 64bit system.
>>>>>>>
>>>>>>> I have set the package to 64bit.
>>>>>>>
>>>>>>> Who can tell me why?  and How to do? I want to set
>>>>>>> the
>>>>>>>               
>>>  HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Media
>>>       
>>>>>>> Center\Start Menu\HideDVD on uninstall.
>>>>>>>
>>>>>>> Thanks.
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>               
>>> ------------------------------------------------------------------------------
>>>       
>>>>>> OpenSolaris 2009.06 is a cutting edge operating system for enterprises
>>>>>> looking to deploy the next generation of Solaris that includes the
>>>>>>             
>>> latest
>>>       
>>>>>> innovations from Sun and the OpenSource community. Download a copy and
>>>>>> enjoy capabilities such as Networking, Storage and Virtualization.
>>>>>> Go to: http://p.sf.net/sfu/opensolaris-get
>>>>>> _______________________________________________
>>>>>> WiX-users mailing list
>>>>>> WiX-users@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>>>>>
>>>>>>
>>>>>>             
>>> ------------------------------------------------------------------------------
>>>       
>>>>> OpenSolaris 2009.06 is a cutting edge operating system for enterprises
>>>>> looking to deploy the next generation of Solaris that includes the
>>>>>           
>>> latest
>>>       
>>>>> innovations from Sun and the OpenSource community. Download a copy and
>>>>> enjoy capabilities such as Networking, Storage and Virtualization.
>>>>> Go to: http://p.sf.net/sfu/opensolaris-get
>>>>> _______________________________________________
>>>>> WiX-users mailing list
>>>>> WiX-users@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>>>>
>>>>>
>>>>>           
>>> ------------------------------------------------------------------------------
>>>       
>>>> OpenSolaris 2009.06 is a cutting edge operating system for enterprises
>>>> looking to deploy the next generation of Solaris that includes the
>>>>         
>>> latest
>>>       
>>>> innovations from Sun and the OpenSource community. Download a copy and
>>>> enjoy capabilities such as Networking, Storage and Virtualization.
>>>> Go to: http://p.sf.net/sfu/opensolaris-get
>>>> _______________________________________________
>>>> WiX-users mailing list
>>>> WiX-users@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>>>
>>>>         
>>> ------------------------------------------------------------------------------
>>> OpenSolaris 2009.06 is a cutting edge operating system for enterprises
>>> looking to deploy the next generation of Solaris that includes the latest
>>> innovations from Sun and the OpenSource community. Download a copy and
>>> enjoy capabilities such as Networking, Storage and Virtualization.
>>> Go to: http://p.sf.net/sfu/opensolaris-get
>>> _______________________________________________
>>> WiX-users mailing list
>>> WiX-users@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>>
>>>       
>>     
> ------------------------------------------------------------------------------
> OpenSolaris 2009.06 is a cutting edge operating system for enterprises
> looking to deploy the next generation of Solaris that includes the latest
> innovations from Sun and the OpenSource community. Download a copy and
> enjoy capabilities such as Networking, Storage and Virtualization.
> Go to: http://p.sf.net/sfu/opensolaris-get
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> Received: from BAY0-XMR-010.phx.gbl (65.54.241.66) by
>  BL2PRD0102HT003.prod.exchangelabs.com (10.6.5.58) with Microsoft SMTP Server
>  id 14.0.482.24; Sun, 7 Jun 2009 01:29:24 +0000
> Received: from mail pickup service by BAY0-XMR-010.phx.gbl with Microsoft
>  SMTPSVC;      Sat, 6 Jun 2009 18:29:12 -0700
> X-Routing-Domain: pod51000.labs.exchange.phx.gbl
> X-Message-Delivery: Vj0xLjE7dXM9MDtsPTA7YT0xO0Q9MTtTQ0w9MA==
> X-Message-Status: n:0
> X-SID-PRA: zhihai guo <zhh...@gmail.com>
> X-SID-Result: Neutral
> X-Message-Info: 
> JGTYoYF78jGPy82qtatJw+klFe+bUpW6FGU7uDrHxySNB7bb2EwjxSBeOvGVu77mkvy97bzchSzUnQcXC0GdZvhi4gwgOzIA
> Received: from lists.sourceforge.net ([216.34.181.88]) by
>  bay0-pamc1-f5.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444);        
>  Sat, 6
>  Jun 2009 18:29:12 -0700
> Received: from localhost ([127.0.0.1] helo=sfs-ml-2.v29.ch3.sourceforge.com)
>       by 3yr0jf1.ch3.sourceforge.com with esmtp (Exim 4.69)   (envelope-from
>  <wix-users-boun...@lists.sourceforge.net>)   id 1MD7C8-0006tn-TK; Sun, 07 Jun
>  2009 01:29:08 +0000
> Received: from sfi-mx-1.v28.ch3.sourceforge.com ([172.29.28.121]
>       helo=mx.sourceforge.net)        by 3yr0jf1.ch3.sourceforge.com with 
> esmtp (Exim
>  4.69)        (envelope-from <zhh...@gmail.com>) id 1MD7C6-0006tg-9q  for
>  wix-users@lists.sourceforge.net; Sun, 07 Jun 2009 01:29:06 +0000
> Received-SPF: pass (29vjzd1.ch3.sourceforge.com: domain of gmail.com
>       designates 209.85.200.169 as permitted sender)
>       client-ip=209.85.200.169; envelope-from=zhh...@gmail.com;
>       helo=wf-out-1314.google.com; 
> Received: from wf-out-1314.google.com ([209.85.200.169])      by
>  29vjzd1.ch3.sourceforge.com with esmtp (Exim 4.69)   id 1MD7Bz-0005ZZ-LP     
> for
>  wix-users@lists.sourceforge.net; Sun, 07 Jun 2009 01:29:06 +0000
> Received: by wf-out-1314.google.com with SMTP id 26so999560wfd.4      for
>  <wix-users@lists.sourceforge.net>;   Sat, 06 Jun 2009 18:28:58 -0700 (PDT)
> Received: by 10.142.187.19 with SMTP id k19mr2041639wff.218.1244338138198;
>       Sat, 06 Jun 2009 18:28:58 -0700 (PDT)
> In-Reply-To: <860931380906060144w27cb0259q1990b588c8b28...@mail.gmail.com>
> References: <860931380906042306n2dd8fb52i9e34f49d572d...@mail.gmail.com>
>       <860931380906050012g5c94aa74p91c083c277fa7...@mail.gmail.com>
>       <4a28d765.9060...@wixtoolset.org>
>       <860931380906052255o533048a9if946f40777eda...@mail.gmail.com>
>       <4a2a13b1.3080...@wixtoolset.org>
>       <860931380906060144w27cb0259q1990b588c8b28...@mail.gmail.com>
> Date: Sun, 7 Jun 2009 10:28:58 +0900
> Message-ID: <860931380906061828n50e817ew3220cb576aaca...@mail.gmail.com>
> From: zhihai guo <zhh...@gmail.com>
> To: General discussion for Windows Installer XML toolset.
>       <wix-users@lists.sourceforge.net>
> X-Spam-Score: -1.4 (-)
> X-Spam-Report: Spam Filtering performed by mx.sourceforge.net.
>       See http://spamassassin.org/tag/ for more details.
>       -1.5 SPF_CHECK_PASS SPF reports sender host as permitted sender for
>       sender-domain
>       -0.0 SPF_PASS               SPF: sender matches SPF record
>       -0.0 DKIM_VERIFIED Domain Keys Identified Mail: signature passes
>       verification
>       0.0 DKIM_SIGNED Domain Keys Identified Mail: message has a signature
>       0.0 HTML_MESSAGE           BODY: HTML included in message
>       0.1 AWL AWL: From: address is in the auto white-list
> X-Headers-End: 1MD7Bz-0005ZZ-LP
> X-Content-Filtered-By: Mailman/MimeDel 2.1.9
> Subject: Re: [WiX-users] 32bit 64bit
> X-BeenThere: wix-users@lists.sourceforge.net
> X-Mailman-Version: 2.1.9
> Precedence: list
> Reply-To: General discussion for Windows Installer XML toolset.
>       <wix-users@lists.sourceforge.net>
> List-Id: "General discussion for Windows Installer XML toolset."
>       <wix-users.lists.sourceforge.net>
> List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/wix-users>,
>       <mailto:wix-users-requ...@lists.sourceforge.net?subject=unsubscribe>
> List-Archive: 
> <http://sourceforge.net/mailarchive/forum.php?forum_name=wix-users>
> List-Post: <mailto:wix-users@lists.sourceforge.net>
> List-Help: <mailto:wix-users-requ...@lists.sourceforge.net?subject=help>
> List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/wix-users>,
>       <mailto:wix-users-requ...@lists.sourceforge.net?subject=subscribe>
> Content-Type: text/plain; charset="us-ascii"
> Content-Transfer-Encoding: 7bit
> Errors-To: wix-users-boun...@lists.sourceforge.net
> Return-Path: wix-users-boun...@lists.sourceforge.net
> X-OriginalArrivalTime: 07 Jun 2009 01:29:12.0327 (UTC) 
> FILETIME=[5CBE4970:01C9E70F]
> X-MS-Exchange-Organization-OriginalArrivalTime: 07 Jun 2009 01:29:12.0000
>  (UTC)
> X-MS-Exchange-Organization-AuthSource: BL2PRD0102HT003.prod.exchangelabs.com
> X-MS-Exchange-Organization-AuthAs: Anonymous
> X-MS-Exchange-Organization-MessageLatency: SRV=BAY0-XMR-010.phx.gbl:TOTAL=12
> X-MS-Exchange-Organization-MessageLatency: 
> SRV=bay0-pamc1-f5.bay0.hotmail.com:TOTAL=0
> X-MS-Exchange-Organization-OriginalClientIPAddress: 216.34.181.88
> X-MS-Exchange-Organization-MessageDirectionality: Incoming
> X-MS-Exchange-Organization-SCL: 1
> X-MS-Exchange-Organization-OriginalSize: 11807
> X-MS-Exchange-Forest-MessageScope: 18f8f54f-111e-4609-818d-7e53ebe01da7
> X-MS-Exchange-Organization-MessageScope: 18f8f54f-111e-4609-818d-7e53ebe01da7
> X-MS-Exchange-Organization-HygienePolicy: Standard
> X-MS-Exchange-Organization-AVStamp-Mailbox: MSFTFF;1;0;0 0 0
> X-MS-Exchange-Organization-Recipient-Limit-Verified: True
> X-MS-Exchange-Organization-Processed-By-Journaling: Journal Agent
> MIME-Version: 1.0
>
> Hi Rob
>
> I want restore registry value when uninstall that is modified on install.
> That code can not work?
>
> Thank you.
>
> 2009/6/6 zhihai guo <zhh...@gmail.com>
>
>   
>> I am sorry, this code does't work on rollback.
>> I am the newer in WIX. but the follow code maybe can help you for rollback.
>>
>> URL:http://code.google.com/p/videobrowser/source/browse/trunk/VideoBrowser2/Setup/Setup.wxs?r=52<http://code.google.com/p/videobrowser/source/browse/trunk/VideoBrowser2/Setup/Setup.wxs?r=52>
>>   <!-- RegisterMceApp.exe on the system. -->
>>  <CustomAction Id="CA_RegisterMceApp_Unregister_Install_Cmd"
>> Property="CA_RegisterMceApp_Unregister_Install"
>> Value="&quot;[REGISTERMCEAPP]&quot; /u /allusers
>> &quot;[#Registration.xml]&quot;"/>
>>  <CustomAction Id="CA_RegisterMceApp_Unregister_Uninstall_Cmd"
>> Property="CA_RegisterMceApp_Unregister_Uninstall"
>> Value="&quot;[REGISTERMCEAPP]&quot; /u /allusers
>> &quot;[#Registration.xml]&quot;"/>
>>  <CustomAction Id="CA_RegisterMceApp_Register_Cmd"
>> Property="CA_RegisterMceApp_Register" Value="&quot;[REGISTERMCEAPP]&quot;
>> /allusers &quot;[#Registration.xml]&quot;"/>
>>  <CustomAction Id="CA_RegisterMceApp_Rollback_Cmd"
>> Property="CA_RegisterMceApp_Rollback" Value="&quot;[REGISTERMCEAPP]&quot; /u
>> /allusers &quot;[#Registration.xml]&quot;"/>
>>
>>  <CustomAction Id="CA_RegisterMceApp_Unregister_Install" BinaryKey="WixCA"
>> DllEntry="CAQuietExec" Execute="deferred" Return="ignore" Impersonate="no"/>
>>  <CustomAction Id="CA_RegisterMceApp_Unregister_Uninstall"
>> BinaryKey="WixCA" DllEntry="CAQuietExec" Execute="deferred" Return="ignore"
>> Impersonate="no"/>
>>  <CustomAction Id="CA_RegisterMceApp_Register" BinaryKey="WixCA"
>> DllEntry="CAQuietExec" Execute="deferred" Return="check" Impersonate="no"/>
>>  <CustomAction Id="CA_RegisterMceApp_Rollback" BinaryKey="WixCA"
>> DllEntry="CAQuietExec" Execute="rollback" Return="ignore" Impersonate="no"/>
>>  <InstallExecuteSequence>
>>
>>   <Custom Action="CA_RegisterMceApp_Unregister_Install"
>> After="CA_RegisterMceApp_Rollback">
>>  <![CDATA[NOT REMOVE]]>
>>  </Custom>
>> </InstallExecuteSequence>
>>
>>
>> 2009/6/6 Rob Mensching <r...@wixtoolset.org>
>>
>> That doesn't look like it will handle rollback. Doesn't look like it
>>     
>>> will reference count those registry keys correctly either.
>>>
>>> zhihai guo wrote:
>>>       
>>>> Do this custom atction before RemoveFiles.
>>>> </InstallExecuteSequence>
>>>> ...   <Custom Action="CA_SetRegistry_Cmd" Before="RemoveFiles">
>>>>    <![CDATA[REMOVE]]>
>>>>  </Custom>
>>>> ...
>>>> </InstallExecuteSequence>
>>>>
>>>>
>>>>
>>>> 2009/6/5 Rob Mensching <r...@wixtoolset.org>
>>>>
>>>>
>>>>         
>>>>> How does that handle rollback and uninstall?
>>>>>
>>>>> zhihai guo wrote:
>>>>>
>>>>>           
>>>>>> Hi.
>>>>>>
>>>>>> I have resolved this problem.
>>>>>>
>>>>>> <CustomAction Id="CA_SetRegistry_Cmd" Property="CA_SetRegistry"
>>>>>> Value="C:\windows\system32\reg.exe  import &quot;[#Itest.reg]&quot;
>>>>>> /reg:64"/>
>>>>>>
>>>>>> ^^^^^^^
>>>>>>
>>>>>> Thanks.
>>>>>> 2009/6/5 zhihai guo <zhh...@gmail.com>
>>>>>>
>>>>>>
>>>>>>
>>>>>>             
>>>>>>> Hi every one:
>>>>>>>
>>>>>>> I have create a custom action to restore registry value when
>>>>>>>               
>>> uninstall
>>>       
>>>>> that
>>>>>
>>>>>           
>>>>>>> is modified on install.
>>>>>>>
>>>>>>> This is the element of CustomAction:
>>>>>>>  <CustomAction Id="CA_SetRegistry_Cmd" Property="CA_SetRegistry"
>>>>>>> Value="C:\windows\system32\reg.exe  import
>>>>>>>               
>>> &quot;[#Itest.reg]&quot;"/>
>>>       
>>>>>>>  <CustomAction Id="CA_SetRegistry" BinaryKey="WixCA"
>>>>>>>
>>>>>>>               
>>>>> DllEntry="CAQuietExec"
>>>>>
>>>>>           
>>>>>>> Execute="deferred" Return="ignore" Impersonate="no"/>
>>>>>>> This is the test.reg
>>>>>>>
>>>>>>> Windows Registry Editor Version 5.00
>>>>>>>
>>>>>>> [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Media
>>>>>>> Center\Start Menu]
>>>>>>> "HideDVD"=dword:00000000
>>>>>>>
>>>>>>> But the
>>>>>>>
>>>>>>>
>>>>>>>               
>>> HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Media
>>>       
>>>>>>> Center\Start Menu\HideDVD is set to 0 on 64bit system.
>>>>>>>
>>>>>>> I have set the package to 64bit.
>>>>>>>
>>>>>>> Who can tell me why?  and How to do? I want to set
>>>>>>> the
>>>>>>>               
>>>  HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Media
>>>       
>>>>>>> Center\Start Menu\HideDVD on uninstall.
>>>>>>>
>>>>>>> Thanks.
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>               
>>> ------------------------------------------------------------------------------
>>>       
>>>>>> OpenSolaris 2009.06 is a cutting edge operating system for enterprises
>>>>>> looking to deploy the next generation of Solaris that includes the
>>>>>>             
>>> latest
>>>       
>>>>>> innovations from Sun and the OpenSource community. Download a copy and
>>>>>> enjoy capabilities such as Networking, Storage and Virtualization.
>>>>>> Go to: http://p.sf.net/sfu/opensolaris-get
>>>>>> _______________________________________________
>>>>>> WiX-users mailing list
>>>>>> WiX-users@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>>>>>
>>>>>>
>>>>>>             
>>> ------------------------------------------------------------------------------
>>>       
>>>>> OpenSolaris 2009.06 is a cutting edge operating system for enterprises
>>>>> looking to deploy the next generation of Solaris that includes the
>>>>>           
>>> latest
>>>       
>>>>> innovations from Sun and the OpenSource community. Download a copy and
>>>>> enjoy capabilities such as Networking, Storage and Virtualization.
>>>>> Go to: http://p.sf.net/sfu/opensolaris-get
>>>>> _______________________________________________
>>>>> WiX-users mailing list
>>>>> WiX-users@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>>>>
>>>>>
>>>>>           
>>> ------------------------------------------------------------------------------
>>>       
>>>> OpenSolaris 2009.06 is a cutting edge operating system for enterprises
>>>> looking to deploy the next generation of Solaris that includes the
>>>>         
>>> latest
>>>       
>>>> innovations from Sun and the OpenSource community. Download a copy and
>>>> enjoy capabilities such as Networking, Storage and Virtualization.
>>>> Go to: http://p.sf.net/sfu/opensolaris-get
>>>> _______________________________________________
>>>> WiX-users mailing list
>>>> WiX-users@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>>>
>>>>         
>>> ------------------------------------------------------------------------------
>>> OpenSolaris 2009.06 is a cutting edge operating system for enterprises
>>> looking to deploy the next generation of Solaris that includes the latest
>>> innovations from Sun and the OpenSource community. Download a copy and
>>> enjoy capabilities such as Networking, Storage and Virtualization.
>>> Go to: http://p.sf.net/sfu/opensolaris-get
>>> _______________________________________________
>>> WiX-users mailing list
>>> WiX-users@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>>
>>>       
>>     
> ------------------------------------------------------------------------------
> OpenSolaris 2009.06 is a cutting edge operating system for enterprises
> looking to deploy the next generation of Solaris that includes the latest
> innovations from Sun and the OpenSource community. Download a copy and
> enjoy capabilities such as Networking, Storage and Virtualization.
> Go to: http://p.sf.net/sfu/opensolaris-get
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>   

------------------------------------------------------------------------------
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to