Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(499)

Side by Side Diff: remoting/host/installer/chromoting.wxs

Issue 10332298: Chromoting Host installation has to be per-machine, not per-user. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698