1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 4 Copyright (C) 2004, 2005, 2006 by the Massachusetts Institute of Technology. 5 Copyright (C) 2007 Secure Endpoints Inc. 6 All rights reserved. 7 8 Export of this software from the United States of America may 9 require a specific license from the United States Government. 10 It is the responsibility of any person or organization contemplating 11 export to obtain such a license before exporting. 12 13 WITHIN THAT CONSTRAINT, permission to use, copy, modify, and 14 distribute this software and its documentation for any purpose and 15 without fee is hereby granted, provided that the above copyright 16 notice appear in all copies and that both that copyright notice and 17 this permission notice appear in supporting documentation, and that 18 the name of M.I.T. not be used in advertising or publicity pertaining 19 to distribution of the software without specific, written prior 20 permission. Furthermore if you modify this software you must label 21 your software as modified software and not distribute it in such a 22 fashion that it might be confused with the original M.I.T. software. 23 M.I.T. makes no representations about the suitability of 24 this software for any purpose. It is provided "as is" without express 25 or implied warranty. 26 27 --> 28<Include xmlns="http://schemas.microsoft.com/wix/2003/01/wi"> 29 30 <!-- Important: This product should only be installed in all-user mode --> 31 <Property Id="ALLUSERS">1</Property> 32 33 <Property Id="LEASHAUTOINIT" Admin="yes" Secure="yes">-autoinit</Property> 34 <Property Id="LEASHAUTOSTART" Admin="yes" Secure="yes">1</Property> 35 36 <Property Id="ARPCOMMENTS">$(var.ARPComments)</Property> 37 <Property Id="ARPCONTACT">kerberos@mit.edu</Property> 38 <Property Id="ARPURLINFOABOUT">https://web.mit.edu/kerberos</Property> 39 <Property Id="ARPHELPLINK">https://web.mit.edu/kerberos</Property> 40 <Property Id="INSTALLLEVEL">50</Property> 41 <Property Id="ComponentDownload">https://web.mit.edu/kerberos</Property> 42 43 <Property Id="UPGRADENSIS"> 44 <RegistrySearch Win64="no" Id="regsrch_NSIS" Root="HKLM" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\Kerberos for Windows" Name="UninstallString" Type="raw"/> 45 </Property> 46 47 <Property Id="NSISVERSION"> 48 <RegistrySearch Win64="no" Id="regsrch_NSISV" Root="HKLM" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\Kerberos for Windows" Name="DisplayVersion" Type="raw" /> 49 </Property> 50 51 <Property Id="CantRemoveNSISError">!(loc.CantRemoveNSIS)</Property> 52 <Property Id="NoIE501Error">!(loc.IE501Required)</Property> 53 54 <!-- Additional properties relating to the UI are in the appropriate UI.wxi file --> 55 56 <!-- Configuration properties. If these properties are defined, then 57 the corresponding component will be enabled. If the corresponding 58 variable value is the empty string (""), then the properties will 59 not be defined. --> 60<?ifdef UseDefaultProperties?> 61 <Property Id="LEASHCREATEMISSINGCONFIG" Admin="yes" Secure="yes">$(var.LeashCreateMissingConfig)</Property> 62 <Property Id="LEASHAUTORENEWTICKETS" Admin="yes" Secure="yes">$(var.LeashAutoRenewTickets)</Property> 63 <Property Id="LEASHLIFETIME" Admin="yes" Secure="yes">$(var.LeashLifetime)</Property> 64 <Property Id="LEASHRENEWTILL" Admin="yes" Secure="yes">$(var.LeashRenewTill)</Property> 65 <Property Id="LEASHRENEWABLE" Admin="yes" Secure="yes">$(var.LeashRenewable)</Property> 66 <Property Id="LEASHFORWARDABLE" Admin="yes" Secure="yes">$(var.LeashForwardable)</Property> 67 <Property Id="LEASHNOADDRESSES" Admin="yes" Secure="yes">$(var.LeashNoAddresses)</Property> 68 <Property Id="LEASHPROXIABLE" Admin="yes" Secure="yes">$(var.LeashProxiable)</Property> 69 <Property Id="LEASHPUBLICIP" Admin="yes" Secure="yes">$(var.LeashPublicIp)</Property> 70 <Property Id="LEASHHIDEKINITOPTIONS" Admin="yes" Secure="yes">$(var.LeashHideKinitOptions)</Property> 71 <Property Id="LEASHLIFEMIN" Admin="yes" Secure="yes">$(var.LeashLifeMin)</Property> 72 <Property Id="LEASHLIFEMAX" Admin="yes" Secure="yes">$(var.LeashLifeMax)</Property> 73 <Property Id="LEASHRENEWMIN" Admin="yes" Secure="yes">$(var.LeashRenewMin)</Property> 74 <Property Id="LEASHRENEWMAX" Admin="yes" Secure="yes">$(var.LeashRenewMax)</Property> 75 <Property Id="LEASHUPPERCASEREALM" Admin="yes" Secure="yes">$(var.LeashUppercaseRealm)</Property> 76 <Property Id="LEASHTIMEHOST" Admin="yes" Secure="yes">$(var.LeashTimeHost)</Property> 77 <Property Id="LEASHPRESERVEKINITOPTIONS" Admin="yes" Secure="yes">$(var.LeashPreserveKinitOptions)</Property> 78 <Property Id="KRB5CONFIG" Admin="yes" Secure="yes">$(var.Krb5Config)</Property> 79 <Property Id="KRB5CCNAME" Admin="yes" Secure="yes">$(var.Krb5CcName)</Property> 80 <Property Id="KRB5PRESERVEIDENTITY" Admin="yes" Secure="yes">$(var.Krb5PreserveIdentity)</Property> 81<?endif?> 82<?ifdef UseLeash?> 83 <Property Id="USELEASH" Admin="yes" Secure="yes">$(var.UseLeash)</Property> 84<?endif?> 85<?ifdef UseNetIDMgr?> 86 <Property Id="USENETIDMGR" Admin="yes" Secure="yes">$(var.UseNetIDMgr)</Property> 87<?endif?> 88</Include> 89