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