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 <?if $(var.Branding) ~= Chrome ?> | 7 <?if $(var.Branding) ~= Chrome ?> |
8 <?define ChromotingHost = "Chrome Remote Desktop Host" ?> | 8 <?define ChromotingHost = "Chrome Remote Desktop Host" ?> |
9 <?define FirewallName = "Chrome Remote Desktop Host" ?> | 9 <?define FirewallName = "Chrome Remote Desktop Host" ?> |
10 <?define Manufacturer = "Google Inc." ?> | 10 <?define Manufacturer = "Google Inc." ?> |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 Language="1033" | 45 Language="1033" |
46 Manufacturer="$(var.Manufacturer)" | 46 Manufacturer="$(var.Manufacturer)" |
47 Name="$(var.ChromotingHost)" | 47 Name="$(var.ChromotingHost)" |
48 UpgradeCode="$(var.UpgradeCode)" | 48 UpgradeCode="$(var.UpgradeCode)" |
49 Version="$(var.Version)"> | 49 Version="$(var.Version)"> |
50 | 50 |
51 <Package Comments="$(var.ChromotingHost) Package" | 51 <Package Comments="$(var.ChromotingHost) Package" |
52 Compressed="yes" | 52 Compressed="yes" |
53 Description="$(var.ChromotingHost) Package" | 53 Description="$(var.ChromotingHost) Package" |
54 InstallerVersion="200" | 54 InstallerVersion="200" |
55 Manufacturer="$(var.Manufacturer)"/> | 55 Manufacturer="$(var.Manufacturer)" |
| 56 InstallScope="perMachine"/> |
56 | 57 |
57 <Condition | 58 <Condition |
58 Message="$(var.ChromotingHost) is only supported on Windows Vista, Windows
Server 2008, or higher."> | 59 Message="$(var.ChromotingHost) is only supported on Windows Vista, Windows
Server 2008, or higher."> |
59 <![CDATA[Installed OR (VersionNT >= 600)]]> | 60 <![CDATA[Installed OR (VersionNT >= 600)]]> |
60 </Condition> | 61 </Condition> |
61 | 62 |
62 <MajorUpgrade | 63 <MajorUpgrade |
63 AllowSameVersionUpgrades="yes" | 64 AllowSameVersionUpgrades="yes" |
64 DowngradeErrorMessage="A later version of [ProductName] is already install
ed. Setup will now exit." | 65 DowngradeErrorMessage="A later version of [ProductName] is already install
ed. Setup will now exit." |
65 Schedule="afterInstallInitialize" /> | 66 Schedule="afterInstallInitialize" /> |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 <Property Id="ARPPRODUCTICON" Value="chromoting.ico" /> | 341 <Property Id="ARPPRODUCTICON" Value="chromoting.ico" /> |
341 | 342 |
342 <InstallExecuteSequence> | 343 <InstallExecuteSequence> |
343 <Custom Action="query_auto_start_service" Before="InstallInitialize"/> | 344 <Custom Action="query_auto_start_service" Before="InstallInitialize"/> |
344 <Custom Action="set_auto_start_service" After="StartServices"> | 345 <Custom Action="set_auto_start_service" After="StartServices"> |
345 <![CDATA[NOT REMOVE AND (auto_start_service = "#2")]]> | 346 <![CDATA[NOT REMOVE AND (auto_start_service = "#2")]]> |
346 </Custom> | 347 </Custom> |
347 </InstallExecuteSequence> | 348 </InstallExecuteSequence> |
348 </Product> | 349 </Product> |
349 </Wix> | 350 </Wix> |
OLD | NEW |