| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 A security descriptor that allows SYSTEM, built-in administrators and | 49 A security descriptor that allows SYSTEM, built-in administrators and |
| 50 interactive users COM_RIGHTS_EXECUTE and COM_RIGHTS_EXECUTE_LOCAL rights. | 50 interactive users COM_RIGHTS_EXECUTE and COM_RIGHTS_EXECUTE_LOCAL rights. |
| 51 The SDDL definition: | 51 The SDDL definition: |
| 52 | 52 |
| 53 $sddl = "O:BAG:BAD:(A;;0x3;;;IU)(A;;0x3;;;SY)(A;;0x3;;;BA)" | 53 $sddl = "O:BAG:BAD:(A;;0x3;;;IU)(A;;0x3;;;SY)(A;;0x3;;;BA)" |
| 54 --> | 54 --> |
| 55 <?define ControllerSd = "010004805C0000006C00000000000000140000000200480003000
00000001400030000000101000000000005040000000000140003000000010100000000000512000
00000001800030000000102000000000005200000002002000001020000000000052000000020020
00001020000000000052000000020020000" ?> | 55 <?define ControllerSd = "010004805C0000006C00000000000000140000000200480003000
00000001400030000000101000000000005040000000000140003000000010100000000000512000
00000001800030000000102000000000005200000002002000001020000000000052000000020020
00001020000000000052000000020020000" ?> |
| 56 | 56 |
| 57 <!-- | 57 <!-- |
| 58 A security descriptor that gives SYSTEM, built-in administrators and | 58 A security descriptor that gives SYSTEM, built-in administrators and |
| 59 LocalSystem accounts COM_RIGHTS_EXECUTE, COM_RIGHTS_EXECUTE_LOCAL, and | 59 LocalService accounts COM_RIGHTS_EXECUTE, COM_RIGHTS_EXECUTE_LOCAL, and |
| 60 COM_RIGHTS_ACTIVATE_LOCAL rights. It specifies a mandatory label that | 60 COM_RIGHTS_ACTIVATE_LOCAL rights. It specifies a mandatory label that |
| 61 specifies "no execute up" policy for medium integrity level. | 61 specifies "no execute up" policy for medium integrity level. |
| 62 | 62 |
| 63 $sddl = "O:BAG:BAD:(A;;0xb;;;SY)(A;;0xb;;;BA)(A;;0xb;;;LS)S:(ML;;NX;;;ME)" | 63 $sddl = "O:BAG:BAD:(A;;0xb;;;SY)(A;;0xb;;;BA)(A;;0xb;;;LS)S:(ML;;NX;;;ME)" |
| 64 --> | 64 --> |
| 65 <?define RdpSd = "010014807800000088000000140000003000000002001C00010000001100
1400040000000101000000000010002000000200480003000000000014000B000000010100000000
000512000000000018000B00000001020000000000052000000020020000000014000B0000000101
00000000000513000000010200000000000520000000200200000102000000000005200000002002
0000" ?> | 65 <?define RdpSd = "010014807800000088000000140000003000000002001C00010000001100
1400040000000101000000000010002000000200480003000000000014000B000000010100000000
000512000000000018000B00000001020000000000052000000020020000000014000B0000000101
00000000000513000000010200000000000520000000200200000102000000000005200000002002
0000" ?> |
| 66 | 66 |
| 67 <!-- Verify that all required parameters are defined. --> | 67 <!-- Verify that all required parameters are defined. --> |
| 68 <?ifndef ControllerClsid ?> | 68 <?ifndef ControllerClsid ?> |
| 69 <?error ControllerClsid must be defined ?> | 69 <?error ControllerClsid must be defined ?> |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 <Custom Action="set_service_description" Before="InstallInitialize"> | 581 <Custom Action="set_service_description" Before="InstallInitialize"> |
| 582 <![CDATA[VersionNT >= 600]]> | 582 <![CDATA[VersionNT >= 600]]> |
| 583 </Custom> | 583 </Custom> |
| 584 | 584 |
| 585 <!-- Schedule RemoveExistingProducts before installing any files. | 585 <!-- Schedule RemoveExistingProducts before installing any files. |
| 586 See http://msdn.microsoft.com/en-us/library/aa371197.aspx. --> | 586 See http://msdn.microsoft.com/en-us/library/aa371197.aspx. --> |
| 587 <RemoveExistingProducts After="InstallInitialize" /> | 587 <RemoveExistingProducts After="InstallInitialize" /> |
| 588 </InstallExecuteSequence> | 588 </InstallExecuteSequence> |
| 589 </Product> | 589 </Product> |
| 590 </Wix> | 590 </Wix> |
| OLD | NEW |