| OLD | NEW |
| 1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
| 2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | 2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
| 3 | 3 |
| 4 <?define EventSourceName = "chromoting" ?> | 4 <?define EventSourceName = "chromoting" ?> |
| 5 <?define ServiceName = "chromoting" ?> | 5 <?define ServiceName = "chromoting" ?> |
| 6 | 6 |
| 7 <!-- TODO(alexeypa): There strings should be localized, | 7 <!-- TODO(alexeypa): There strings should be localized, |
| 8 see http://crbug.com/121785 --> | 8 see http://crbug.com/121785 --> |
| 9 <?if $(var.Branding) ~= Chrome ?> | 9 <?if $(var.Branding) ~= Chrome ?> |
| 10 <?define ChromotingHost = "Chrome Remote Desktop Host" ?> | 10 <?define ChromotingHost = "Chrome Remote Desktop Host" ?> |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 <!-- Set the icon shown in Add/Remove Programs. --> | 693 <!-- Set the icon shown in Add/Remove Programs. --> |
| 694 <Icon Id="chromoting.ico" SourceFile="chromoting.ico"/> | 694 <Icon Id="chromoting.ico" SourceFile="chromoting.ico"/> |
| 695 <Property Id="ARPPRODUCTICON" Value="chromoting.ico" /> | 695 <Property Id="ARPPRODUCTICON" Value="chromoting.ico" /> |
| 696 | 696 |
| 697 <InstallExecuteSequence> | 697 <InstallExecuteSequence> |
| 698 <Custom Action="query_auto_start_service" Before="InstallInitialize"/> | 698 <Custom Action="query_auto_start_service" Before="InstallInitialize"/> |
| 699 <Custom Action="set_auto_start_service" After="StartServices"> | 699 <Custom Action="set_auto_start_service" After="StartServices"> |
| 700 <![CDATA[NOT REMOVE AND (auto_start_service = "#2")]]> | 700 <![CDATA[NOT REMOVE AND (auto_start_service = "#2")]]> |
| 701 </Custom> | 701 </Custom> |
| 702 | 702 |
| 703 <!-- Set the serivce name and description --> | 703 <!-- Set the service name and description --> |
| 704 <Custom Action="set_service_display_name_xp" Before="InstallInitialize"> | 704 <Custom Action="set_service_display_name_xp" Before="InstallInitialize"> |
| 705 <![CDATA[VersionNT < 600]]> | 705 <![CDATA[VersionNT < 600]]> |
| 706 </Custom> | 706 </Custom> |
| 707 <Custom Action="set_service_description_xp" Before="InstallInitialize"> | 707 <Custom Action="set_service_description_xp" Before="InstallInitialize"> |
| 708 <![CDATA[VersionNT < 600]]> | 708 <![CDATA[VersionNT < 600]]> |
| 709 </Custom> | 709 </Custom> |
| 710 <Custom Action="set_service_display_name" Before="InstallInitialize"> | 710 <Custom Action="set_service_display_name" Before="InstallInitialize"> |
| 711 <![CDATA[VersionNT >= 600]]> | 711 <![CDATA[VersionNT >= 600]]> |
| 712 </Custom> | 712 </Custom> |
| 713 <Custom Action="set_service_description" Before="InstallInitialize"> | 713 <Custom Action="set_service_description" Before="InstallInitialize"> |
| 714 <![CDATA[VersionNT >= 600]]> | 714 <![CDATA[VersionNT >= 600]]> |
| 715 </Custom> | 715 </Custom> |
| 716 | 716 |
| 717 <!-- Schedule RemoveExistingProducts before installing any files. | 717 <!-- Schedule RemoveExistingProducts before installing any files. |
| 718 See http://msdn.microsoft.com/en-us/library/aa371197.aspx. --> | 718 See http://msdn.microsoft.com/en-us/library/aa371197.aspx. --> |
| 719 <RemoveExistingProducts After="InstallInitialize" /> | 719 <RemoveExistingProducts After="InstallInitialize" /> |
| 720 </InstallExecuteSequence> | 720 </InstallExecuteSequence> |
| 721 </Product> | 721 </Product> |
| 722 </Wix> | 722 </Wix> |
| OLD | NEW |