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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 KeyPath="yes" | 126 KeyPath="yes" |
127 Name="remoting_service.exe" | 127 Name="remoting_service.exe" |
128 Vital="yes"/> | 128 Vital="yes"/> |
129 | 129 |
130 <ServiceInstall Id="install_service" | 130 <ServiceInstall Id="install_service" |
131 Type="ownProcess" | 131 Type="ownProcess" |
132 Vital="yes" | 132 Vital="yes" |
133 Name="$(var.ServiceName)" | 133 Name="$(var.ServiceName)" |
134 DisplayName="[chromoting_service_display_name]" | 134 DisplayName="[chromoting_service_display_name]" |
135 Description="[chromoting_service_description]" | 135 Description="[chromoting_service_description]" |
136 Arguments="--host-binary="[binaries]remoting_me2me_
host.exe" --auth-config="[config_files]host.json" --host-config=&
quot;[config_files]host.json"" | 136 Arguments="--auth-config="[config_files]host.json&q
uot; --host-config="[config_files]host.json"" |
137 Start="demand" | 137 Start="demand" |
138 Account="LocalSystem" | 138 Account="LocalSystem" |
139 ErrorControl="ignore" | 139 ErrorControl="ignore" |
140 Interactive="no" /> | 140 Interactive="no" /> |
141 | 141 |
142 <ServiceControl Id="start_service" | 142 <ServiceControl Id="start_service" |
143 Stop="both" | 143 Stop="both" |
144 Remove="uninstall" | 144 Remove="uninstall" |
145 Name="$(var.ServiceName)" | 145 Name="$(var.ServiceName)" |
146 Wait="yes" /> | 146 Wait="yes" /> |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 </Custom> | 410 </Custom> |
411 <Custom Action="set_service_display_name" Before="InstallInitialize"> | 411 <Custom Action="set_service_display_name" Before="InstallInitialize"> |
412 <![CDATA[VersionNT >= 600]]> | 412 <![CDATA[VersionNT >= 600]]> |
413 </Custom> | 413 </Custom> |
414 <Custom Action="set_service_description" Before="InstallInitialize"> | 414 <Custom Action="set_service_description" Before="InstallInitialize"> |
415 <![CDATA[VersionNT >= 600]]> | 415 <![CDATA[VersionNT >= 600]]> |
416 </Custom> | 416 </Custom> |
417 </InstallExecuteSequence> | 417 </InstallExecuteSequence> |
418 </Product> | 418 </Product> |
419 </Wix> | 419 </Wix> |
OLD | NEW |