1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 4 Copyright (C) 2004, 2005, 2006 by the Massachusetts Institute of Technology. 5 All rights reserved. 6 7 Export of this software from the United States of America may 8 require a specific license from the United States Government. 9 It is the responsibility of any person or organization contemplating 10 export to obtain such a license before exporting. 11 12 WITHIN THAT CONSTRAINT, permission to use, copy, modify, and 13 distribute this software and its documentation for any purpose and 14 without fee is hereby granted, provided that the above copyright 15 notice appear in all copies and that both that copyright notice and 16 this permission notice appear in supporting documentation, and that 17 the name of M.I.T. not be used in advertising or publicity pertaining 18 to distribution of the software without specific, written prior 19 permission. Furthermore if you modify this software you must label 20 your software as modified software and not distribute it in such a 21 fashion that it might be confused with the original M.I.T. software. 22 M.I.T. makes no representations about the suitability of 23 this software for any purpose. It is provided "as is" without express 24 or implied warranty. 25 26 --> 27<Include xmlns="http://schemas.microsoft.com/wix/2006/wi"> 28 <Property Id="DISABLEADVTSHORTCUTS" Value="1" /> 29 <Property Id="SYSTEMKRB5INI"> 30 <DirectorySearch Id="WindowsFolder" Path="[WindowsFolder]"> 31 <FileSearch Name="krb5.ini"/> 32 </DirectorySearch> 33 </Property> 34 35 <Directory Id="TARGETDIR" Name="SourceDir"> 36 <Directory Id="DesktopFolder" Name="Desktop"/> 37 <Directory Id="$(var.PISystemFolder)" SourceName="System"> 38 <Component Id="cmf_kfwlogon_DLL" Guid="$(var.cmf_kfwlogon_DLL_guid)"> 39 <File Id="filekfwlogon_DLL" Name="kfwlogon.dll" KeyPath="yes" DiskId="1" Source="$(var.BinDir)kfwlogon.dll" /> 40 <RegistryKey Root="HKLM" Key="SOFTWARE\Microsoft\Windows NT\CurrentVersion\WinLogon\Notify\MIT_KFW" Action="createAndRemoveOnUninstall"> 41 <RegistryValue Name="Asynchronous" Type="integer" Value="0" /> 42 <RegistryValue Name="Impersonate" Type="integer" Value="0" /> 43 <RegistryValue Name="DLLName" Type="string" Value="[#filekfwlogon_DLL]" /> 44 <RegistryValue Name="Logon" Type="string" Value="KFW_Logon_Event" /> 45 </RegistryKey> 46 <RegistryKey Root="HKLM" Key="SYSTEM\CurrentControlSet\Services\MIT Kerberos\NetworkProvider" Action="createAndRemoveOnUninstall"> 47 <RegistryValue Name="AuthentProviderPath" Type="expandable" Value="[$(var.PISystemFolder)]kfwlogon.dll"/> 48 <RegistryValue Name="VerboseLogging" Type="integer" Value="10"/> 49 <RegistryValue Name="ProviderPath" Type="expandable" Value="[$(var.PISystemFolder)]kfwlogon.dll"/> 50 <RegistryValue Name="Class" Type="integer" Value="2" /> 51 <RegistryValue Name="Name" Type="string" Value="MIT Kerberos"/> 52 </RegistryKey> 53 </Component> 54 <Component Id="cmf_kfwcpcc_EXE" Guid="$(var.cmf_kfwcpcc_EXE_guid)"> 55 <File Id="filekfwcpcc_EXE" Name="kfwcpcc.exe" DiskId="1" Source="$(var.BinDir)kfwcpcc.exe" /> 56 </Component> 57 <?ifdef DebugSyms?> 58 <Component Id="cmp_ClientSystemDebug" Guid="$(var.cmp_ClientSystemDebug_guid)"> 59 <File Id="filekfwlogon_PDB" Name="kfwlogon.pdb" KeyPath="yes" DiskId="1" Source="$(var.BinDir)kfwlogon.pdb" /> 60 <File Id="filekfwcpcc_PDB" Name="kfwcpcc.pdb" DiskId="1" Source="$(var.BinDir)kfwcpcc.pdb" /> 61 </Component> 62 <?endif?> 63 </Directory> 64 <Directory Id="$(var.PIProgramFilesFolder)"> 65 <Directory Id="dirMIT" Name="MIT" SourceName="."> 66 <Directory Id="KERBEROSDIR" Name="Kerberos"> 67 <Directory Id="dirbin" Name="bin" FileSource="$(var.BinDir)"> 68 69 <!-- Kerberos V options --> 70 <Component Id="rcm_krb5_1" Guid="$(var.rcm_krb5_1_guid)" DiskId="1"> 71 <RegistryValue Id="reg_krb5_1" Root="HKLM" Key="Software\MIT\kerberos5" Name="config" Type="string" Value="[KRB5CONFIG]" KeyPath="yes" /> 72 <Condition>KRB5CONFIG</Condition> 73 </Component> 74 <Component Id="rcm_krb5_2" Guid="$(var.rcm_krb5_2_guid)" DiskId="1"> 75 <RegistryValue Id="reg_krb5_2" Root="HKLM" Key="Software\MIT\kerberos5" Name="ccname" Type="string" Value="[KRB5CCNAME]" KeyPath="yes" /> 76 <Condition>KRB5CCNAME</Condition> 77 </Component> 78 <Component Id="rcm_krb5_3" Guid="$(var.rcm_krb5_3_guid)" DiskId="1"> 79 <RegistryValue Id="reg_krb5_3" Root="HKLM" Key="Software\MIT\kerberos5" Name="PreserveInitialTicketIdentity" Type="integer" Value="[KRB5PRESERVEIDENTITY]" KeyPath="yes" /> 80 <Condition>KRB5PRESERVEIDENTITY</Condition> 81 </Component> 82 83 <Component Id="cmf_comerr32_dll" Guid="$(var.cmf_comerr32_dll_guid)" DiskId="1"> 84 <File Id="fil_comerr32_dll" Name="$(var.cmf_comerr32_dll_name)" KeyPath="yes" /> 85 </Component> 86 <Component Id="cmf_gss_client_exe" Guid="$(var.cmf_gss_client_exe_guid)" DiskId="1"> 87 <File Id="fil_gss_client_exe" Name="gss-client.exe" KeyPath="yes" /> 88 <RegistryKey Id="reg_ts_gss_client_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\gss-client" Action="createAndRemoveOnUninstall" /> 89 <RegistryValue Id="reg_ts_gss_client_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\gss-client" Name="Flags" Type="integer" Value="1032" /> 90 </Component> 91 <Component Id="cmf_gss_server_exe" Guid="$(var.cmf_gss_server_exe_guid)" DiskId="1"> 92 <File Id="fil_gss_server_exe" Name="gss-server.exe" KeyPath="yes" /> 93 <RegistryKey Id="reg_ts_gss_server_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\gss-server" Action="createAndRemoveOnUninstall" /> 94 <RegistryValue Id="reg_ts_gss_server_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\gss-server" Name="Flags" Type="integer" Value="1032" /> 95 </Component> 96 <Component Id="cmf_gssapi32_dll" Guid="$(var.cmf_gssapi32_dll_guid)" DiskId="1"> 97 <File Id="fil_gssapi32_dll" Name="$(var.cmf_gssapi32_dll_name)" KeyPath="yes" /> 98 </Component> 99 <Component Id="cmf_kdestroy_exe" Guid="$(var.cmf_kdestroy_exe_guid)" DiskId="1"> 100 <File Id="fil_kdestroy_exe" Name="kdestroy.exe" KeyPath="yes" /> 101 <RegistryKey Id="reg_ts_kdestroy_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kdestroy" Action="createAndRemoveOnUninstall" /> 102 <RegistryValue Id="reg_ts_kdestroy_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kdestroy" Name="Flags" Type="integer" Value="1032" /> 103 </Component> 104 <Component Id="cmf_kcpytkt_exe" Guid="$(var.cmf_kcpytkt_exe_guid)" DiskId="1"> 105 <File Id="fil_kcpytkt_exe" Name="kcpytkt.exe" KeyPath="yes" /> 106 <RegistryKey Id="reg_ts_kcpytkt_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kcpytkt" Action="createAndRemoveOnUninstall" /> 107 <RegistryValue Id="reg_ts_kcpytkt_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kcpytkt" Name="Flags" Type="integer" Value="1032" /> 108 </Component> 109 <Component Id="cmf_kdeltkt_exe" Guid="$(var.cmf_kdeltkt_exe_guid)" DiskId="1"> 110 <File Id="fil_kdeltkt_exe" Name="kdeltkt.exe" KeyPath="yes" /> 111 <RegistryKey Id="reg_ts_kdeltkt_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kdeltkt" Action="createAndRemoveOnUninstall" /> 112 <RegistryValue Id="reg_ts_kdeltkt_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kdeltkt" Name="Flags" Type="integer" Value="1032" /> 113 </Component> 114 <Component Id="cmf_kinit_exe" Guid="$(var.cmf_kinit_exe_guid)" DiskId="1"> 115 <File Id="fil_kinit_exe" Name="kinit.exe" KeyPath="yes" /> 116 <RegistryKey Id="reg_ts_kinit_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kinit" Action="createAndRemoveOnUninstall" /> 117 <RegistryValue Id="reg_ts_kinit_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kinit" Name="Flags" Type="integer" Value="1032" /> 118 </Component> 119 <Component Id="cmf_klist_exe" Guid="$(var.cmf_klist_exe_guid)" DiskId="1"> 120 <File Id="fil_klist_exe" Name="klist.exe" KeyPath="yes" /> 121 <RegistryKey Id="reg_ts_klist_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\klist" Action="createAndRemoveOnUninstall" /> 122 <RegistryValue Id="reg_ts_klist_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\klist" Name="Flags" Type="integer" Value="1032" /> 123 </Component> 124 <Component Id="cmf_kpasswd_exe" Guid="$(var.cmf_kpasswd_exe_guid)" DiskId="1"> 125 <File Id="fil_kpasswd_exe" Name="kpasswd.exe" KeyPath="yes" /> 126 <RegistryKey Id="reg_ts_kpasswd_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kpasswd" Action="createAndRemoveOnUninstall" /> 127 <RegistryValue Id="reg_ts_kpasswd_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kpasswd" Name="Flags" Type="integer" Value="1032" /> 128 </Component> 129 <Component Id="cmf_kswitch_exe" Guid="$(var.cmf_kswitch_exe_guid)" DiskId="1"> 130 <File Id="fil_kswitch_exe" Name="kswitch.exe" KeyPath="yes" /> 131 <RegistryKey Id="reg_ts_kswitch_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kswitch" Action="createAndRemoveOnUninstall" /> 132 <RegistryValue Id="reg_ts_kswitch_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kswitch" Name="Flags" Type="integer" Value="1032" /> 133 </Component> 134 <Component Id="cmf_kvno_exe" Guid="$(var.cmf_kvno_exe_guid)" DiskId="1"> 135 <File Id="fil_kvno_exe" Name="kvno.exe" KeyPath="yes" /> 136 <RegistryKey Id="reg_ts_kvno_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kvno" Action="createAndRemoveOnUninstall" /> 137 <RegistryValue Id="reg_ts_kvno_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\kvno" Name="Flags" Type="integer" Value="1032" /> 138 </Component> 139 <Component Id="cmf_krb5_32_dll" Guid="$(var.cmf_krb5_32_dll_guid)" DiskId="1"> 140 <File Id="fil_krb5_32_dll" Name="$(var.cmf_krb5_32_dll_name)" KeyPath="yes" /> 141 <Environment Id="env_kclient_path" Action="set" Name="PATH" Part="last" System="yes" Value="[KERBEROSDIR]bin" /> 142 <RegistryKey Root="HKLM" Key="SYSTEM\CurrentControlSet\Control\Lsa\Kerberos\Domains\ATHENA.MIT.EDU"> 143 <RegistryValue Name="KdcNames" Type="multiString"> 144 <MultiStringValue>kerberos.mit.edu</MultiStringValue> 145 <MultiStringValue>kerberos-1.mit.edu</MultiStringValue> 146 <MultiStringValue>kerberos-2.mit.edu</MultiStringValue> 147 </RegistryValue> 148 </RegistryKey> 149 <RegistryKey Root="HKLM" Key="SYSTEM\CurrentControlSet\Control\Lsa\Kerberos\Domains\CSAIL.MIT.EDU"> 150 <RegistryValue Name="KdcNames" Type="multiString"> 151 <MultiStringValue>kerberos-1.csail.mit.edu</MultiStringValue> 152 <MultiStringValue>kerberos-2.csail.mit.edu</MultiStringValue> 153 </RegistryValue> 154 </RegistryKey> 155 </Component> 156 <Component Id="cmf_k5sprt32_dll" Guid="$(var.cmf_k5sprt32_dll_guid)" DiskId="1"> 157 <File Id="fil_k5sprt32_dll" Name="$(var.cmf_k5sprt32_dll_name)" /> 158 </Component> 159 <Component Id="cmf_krbcc32_dll" Guid="$(var.cmf_krbcc32_dll_guid)" DiskId="1"> 160 <File Id="fil_krbcc32_dll" Name="$(var.cmf_krbcc32_dll_name)" KeyPath="yes" /> 161 </Component> 162 <Component Id="cmf_ccapiserver_exe" Guid="$(var.cmf_ccapiserver_exe_guid)" DiskId="1"> 163 <File Id="fil_ccapiserver_exe" Name="$(var.cmf_ccapiserver_exe_name)" KeyPath="yes" /> 164 <RegistryKey Id="reg_ts_krbcc32s_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\ccapiserver" Action="createAndRemoveOnUninstall" /> 165 <RegistryValue Id="reg_ts_krbcc32s_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\ccapiserver" Name="Flags" Type="integer" Value="1032" /> 166 </Component> 167 <Component Id="cmf_leash_exe" Guid="$(var.cmf_leash_exe_guid)" DiskId="1"> 168 <File Id="fil_leash_exe" Name="MIT Kerberos.exe" KeyPath="yes"> 169 </File> 170 <RegistryKey Id="reg_ts_leash32_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\leash32" Action="createAndRemoveOnUninstall" /> 171 <RegistryValue Id="reg_ts_leash32_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\leash32" Name="Flags" Type="integer" Value="1032" /> 172 </Component> 173 174<!-- <Component Id="csc_leash32_exe" Guid="$(var.csc_leash32_exe_guid)" DiskId="1"> 175 <CreateFolder Directory="dirShortcut" /> 176 <Condition>USELEASH</Condition> 177 </Component> --> 178 179 <!-- Leash32 configuration --> 180 <Component Id="rcm_leash_2" Guid="$(var.rcm_leash_2_guid)" DiskId="1"> 181 <RegistryValue Id="reg_leash_2" Root="HKLM" Key="Software\MIT\Leash32\Settings" Name="createmissingconfig" Type="integer" Value="[LEASHCREATEMISSINGCONFIG]" KeyPath="yes"/> 182 <Condition>LEASHCREATEMISSINGCONFIG</Condition> 183 </Component> 184 <Component Id="rcm_leash_3" Guid="$(var.rcm_leash_3_guid)" DiskId="1"> 185 <RegistryValue Id="reg_leash_3" Root="HKLM" Key="Software\MIT\Leash32\Settings" Name="AutoRenewTickets" Type="integer" Value="[LEASHAUTORENEWTICKETS]" KeyPath="yes"/> 186 <Condition>LEASHAUTORENEWTICKETS</Condition> 187 </Component> 188 <Component Id="csc_LeashStartup" Guid="$(var.csc_LeashStartup_guid)" DiskId="1"> 189 <RegistryValue Id="reg_sc_leash_marker" Root="HKCU" Key="$(var.KfwRegRoot)\Client\$(var.VersionString)" Name="LeashAutoStart" Type="integer" Value="1" KeyPath="yes" /> 190 <Shortcut Id="sc_leash_exe_startup" Advertise="no" Directory="StartupFolder" Name="MIT Kerberos.lnk" Arguments="[LEASHAUTOINIT]" Target="[dirbin]MIT Kerberos.exe" Show="minimized" /> 191 </Component> 192 193 <Component Id="cmf_leash32_chm" Guid="$(var.cmf_leash32_chm_guid)" DiskId="1"> 194 <File Id="fil_leash32_chm" Name="MIT Kerberos.chm" KeyPath="yes" /> 195 </Component> 196 197 <Component Id="cmf_leashw32_dll" Guid="$(var.cmf_leashw32_dll_guid)" DiskId="1"> 198 <File Id="fil_leashw32_dll" Name="$(var.cmf_leashw32_dll_name)" KeyPath="yes" /> 199 </Component> 200 201 <!-- Leash DLL configuration --> 202 <Component Id="rcm_leashdll_1" Guid="$(var.rcm_leashdll_1_guid)" DiskId="1"> 203 <RegistryValue Id="reg_leashdll_1" Root="HKLM" Key="Software\MIT\Leash" Name="lifetime" Type="integer" Value="[LEASHLIFETIME]" KeyPath="yes"/> 204 <Condition>LEASHLIFETIME</Condition> 205 </Component> 206 <Component Id="rcm_leashdll_2" Guid="$(var.rcm_leashdll_2_guid)" DiskId="1"> 207 <RegistryValue Id="reg_leashdll_2" Root="HKLM" Key="Software\MIT\Leash" Name="renew_till" Type="integer" Value="[LEASHRENEWTILL]" KeyPath="yes"/> 208 <Condition>LEASHRENEWTILL</Condition> 209 </Component> 210 <Component Id="rcm_leashdll_3" Guid="$(var.rcm_leashdll_3_guid)" DiskId="1"> 211 <RegistryValue Id="reg_leashdll_3" Root="HKLM" Key="Software\MIT\Leash" Name="renewable" Type="integer" Value="[LEASHRENEWABLE]" KeyPath="yes"/> 212 <Condition>LEASHRENEWABLE</Condition> 213 </Component> 214 <Component Id="rcm_leashdll_4" Guid="$(var.rcm_leashdll_4_guid)" DiskId="1"> 215 <RegistryValue Id="reg_leashdll_4" Root="HKLM" Key="Software\MIT\Leash" Name="forwardable" Type="integer" Value="[LEASHFORWARDABLE]" KeyPath="yes"/> 216 <Condition>LEASHFORWARDABLE</Condition> 217 </Component> 218 <Component Id="rcm_leashdll_5" Guid="$(var.rcm_leashdll_5_guid)" DiskId="1"> 219 <RegistryValue Id="reg_leashdll_5" Root="HKLM" Key="Software\MIT\Leash" Name="noaddresses" Type="integer" Value="[LEASHNOADDRESSES]" KeyPath="yes"/> 220 <Condition>LEASHNOADDRESSES</Condition> 221 </Component> 222 <Component Id="rcm_leashdll_6" Guid="$(var.rcm_leashdll_6_guid)" DiskId="1"> 223 <RegistryValue Id="reg_leashdll_6" Root="HKLM" Key="Software\MIT\Leash" Name="proxiable" Type="integer" Value="[LEASHPROXIABLE]" KeyPath="yes"/> 224 <Condition>LEASHPROXIABLE</Condition> 225 </Component> 226 <Component Id="rcm_leashdll_7" Guid="$(var.rcm_leashdll_7_guid)" DiskId="1"> 227 <RegistryValue Id="reg_leashdll_7" Root="HKLM" Key="Software\MIT\Leash" Name="publicip" Type="integer" Value="[LEASHPUBLICIP]" KeyPath="yes"/> 228 <Condition>LEASHPUBLICIP</Condition> 229 </Component> 230 <Component Id="rcm_leashdll_9" Guid="$(var.rcm_leashdll_9_guid)" DiskId="1"> 231 <RegistryValue Id="reg_leashdll_9" Root="HKLM" Key="Software\MIT\Leash" Name="hide_kinit_options" Type="integer" Value="[LEASHHIDEKINITOPTIONS]" KeyPath="yes"/> 232 <Condition>LEASHHIDEKINITOPTIONS</Condition> 233 </Component> 234 <Component Id="rcm_leashdll_10" Guid="$(var.rcm_leashdll_10_guid)" DiskId="1"> 235 <RegistryValue Id="reg_leashdll_10" Root="HKLM" Key="Software\MIT\Leash" Name="life_min" Type="integer" Value="[LEASHLIFEMIN]" KeyPath="yes"/> 236 <Condition>LEASHLIFEMIN</Condition> 237 </Component> 238 <Component Id="rcm_leashdll_11" Guid="$(var.rcm_leashdll_11_guid)" DiskId="1"> 239 <RegistryValue Id="reg_leashdll_11" Root="HKLM" Key="Software\MIT\Leash" Name="life_max" Type="integer" Value="[LEASHLIFEMAX]" KeyPath="yes"/> 240 <Condition>LEASHLIFEMAX</Condition> 241 </Component> 242 <Component Id="rcm_leashdll_12" Guid="$(var.rcm_leashdll_12_guid)" DiskId="1"> 243 <RegistryValue Id="reg_leashdll_12" Root="HKLM" Key="Software\MIT\Leash" Name="renew_min" Type="integer" Value="[LEASHRENEWMIN]" KeyPath="yes"/> 244 <Condition>LEASHRENEWMIN</Condition> 245 </Component> 246 <Component Id="rcm_leashdll_13" Guid="$(var.rcm_leashdll_13_guid)" DiskId="1"> 247 <RegistryValue Id="reg_leashdll_13" Root="HKLM" Key="Software\MIT\Leash" Name="renew_max" Type="integer" Value="[LEASHRENEWMAX]" KeyPath="yes"/> 248 <Condition>LEASHRENEWMAX</Condition> 249 </Component> 250 <Component Id="rcm_leashdll_15" Guid="$(var.rcm_leashdll_15_guid)" DiskId="1"> 251 <RegistryValue Id="reg_leashdll_15" Root="HKLM" Key="Software\MIT\Leash32\Settings" Name="uppercaserealm" Type="integer" Value="[LEASHUPPERCASEREALM]" KeyPath="yes"/> 252 <Condition>LEASHUPPERCASEREALM</Condition> 253 </Component> 254 <Component Id="rcm_leashdll_16" Guid="$(var.rcm_leashdll_16_guid)" DiskId="1"> 255 <RegistryValue Id="reg_leashdll_16" Root="HKLM" Key="Software\MIT\Leash32\Settings" Name="timehost" Type="string" Value="[LEASHTIMEHOST]" KeyPath="yes"/> 256 <Condition>LEASHTIMEHOST</Condition> 257 </Component> 258 <Component Id="rcm_leashdll_17" Guid="$(var.rcm_leashdll_17_guid)" DiskId="1"> 259 <RegistryValue Id="reg_leashdll_17" Root="HKLM" Key="Software\MIT\Leash" Name="preserve_kinit_options" Type="integer" Value="[LEASHPRESERVEKINITOPTIONS]" KeyPath="yes"/> 260 <Condition>LEASHPRESERVEKINITOPTIONS</Condition> 261 </Component> 262 263 <Component Id="cmf_ms2mit_exe" Guid="$(var.cmf_ms2mit_exe_guid)" DiskId="1"> 264 <File Id="fil_ms2mit_exe" Name="ms2mit.exe" KeyPath="yes" /> 265 <RegistryKey Id="reg_ts_ms2mit_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\ms2mit" Action="createAndRemoveOnUninstall" /> 266 <RegistryValue Id="reg_ts_ms2mit_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\ms2mit" Name="Flags" Type="integer" Value="1032" /> 267 </Component> 268 <Component Id="cmf_mit2ms_exe" Guid="$(var.cmf_mit2ms_exe_guid)" DiskId="1"> 269 <File Id="fil_mit2ms_exe" Name="mit2ms.exe" KeyPath="yes" /> 270 <RegistryKey Id="reg_ts_mit2ms_0" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\mit2ms" Action="createAndRemoveOnUninstall" /> 271 <RegistryValue Id="reg_ts_mit2ms_1" Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Compatibility\Applications\mit2ms" Name="Flags" Type="integer" Value="1032" /> 272 </Component> 273 <Component Id="cmf_xpprof32_dll" Guid="$(var.cmf_xpprof32_dll_guid)" DiskId="1"> 274 <File Id="fil_xpprof32_dll" Name="$(var.cmf_xpprof32_dll_name)" KeyPath="yes" /> 275 </Component> 276 <?if $(sys.BUILDARCH) = "x64"?> 277 <Component Id="cmf_krb5_64_dll" Guid="$(var.cmf_krb5_64_dll_guid)" DiskId="1"> 278 <File Id="fil_krb5_64_dll" Name="$(var.cmf_krb5_64_dll_name)" KeyPath="yes" /> 279 </Component> 280 <Component Id="cmf_k5sprt64_dll" Guid="$(var.cmf_k5sprt64_dll_guid)" DiskId="1"> 281 <File Id="fil_k5sprt64_dll" Name="$(var.cmf_k5sprt64_dll_name)" /> 282 </Component> 283 <Component Id="cmf_krbcc64_dll" Guid="$(var.cmf_krbcc64_dll_guid)" DiskId="1"> 284 <File Id="fil_krbcc64_dll" Name="$(var.cmf_krbcc64_dll_name)" KeyPath="yes" /> 285 </Component> 286 <Component Id="cmf_gssapi64_dll" Guid="$(var.cmf_gssapi64_dll_guid)" DiskId="1"> 287 <File Id="fil_gssapi64_dll" Name="$(var.cmf_gssapi64_dll_name)" KeyPath="yes" /> 288 </Component> 289 <Component Id="cmf_comerr64_dll" Guid="$(var.cmf_comerr64_dll_guid)" DiskId="1"> 290 <File Id="fil_comerr64_dll" Name="$(var.cmf_comerr64_dll_name)" KeyPath="yes" /> 291 </Component> 292 <Component Id="cmf_leashw64_dll" Guid="$(var.cmf_leashw64_dll_guid)" DiskId="1"> 293 <File Id="fil_leashw64_dll" Name="$(var.cmf_leashw64_dll_name)" KeyPath="yes" /> 294 </Component> 295 <Component Id="cmf_xpprof64_dll" Guid="$(var.cmf_xpprof64_dll_guid)" DiskId="1"> 296 <File Id="fil_xpprof64_dll" Name="$(var.cmf_xpprof64_dll_name)" KeyPath="yes" /> 297 </Component> 298 <?endif?> 299 300 <!-- Debug symbols --> 301 <?ifdef DebugSyms?> 302 <Component Id="cmf_bin_debug" Guid="$(var.cmf_bin_debug_guid)" DiskId="1"> 303 <?if $(sys.BUILDARCH) = "x86" ?> 304 <File Id="fil_comerr32_pdb" Name="comerr32.pdb" /> 305 <File Id="fil_gssapi32_pdb" Name="gssapi32.pdb" /> 306 <File Id="fil_krb5_32_pdb" Name="krb5_32.pdb" KeyPath="yes" /> 307 <File Id="fil_k5sprt32_pdb" Name="k5sprt32.pdb" /> 308 <File Id="fil_krbcc32_pdb" Name="krbcc32.pdb" /> 309 <File Id="fil_leashw32_pdb" Name="leashw32.pdb" /> 310 <File Id="fil_xpprof32_pdb" Name="xpprof32.pdb" /> 311 <?else?> 312 <File Id="fil_comerr64_pdb" Name="comerr64.pdb" /> 313 <File Id="fil_gssapi64_pdb" Name="gssapi64.pdb" /> 314 <File Id="fil_krb5_64_pdb" Name="krb5_64.pdb" KeyPath="yes" /> 315 <File Id="fil_k5sprt64_pdb" Name="k5sprt64.pdb" /> 316 <File Id="fil_krbcc64_pdb" Name="krbcc64.pdb" /> 317 <File Id="fil_leashw64_pdb" Name="leashw64.pdb" /> 318 <File Id="fil_xpprof64_pdb" Name="xpprof64.pdb" /> 319 <?endif?> 320 <File Id="fil_leash_pdb" Name="leash.pdb" /> 321 <File Id="fil_ccapiserver_pdb" Name="ccapiserver.pdb" /> 322 <File Id="fil_gss_client_pdb" Name="gss-client.pdb" /> 323 <File Id="fil_gss_server_pdb" Name="gss-server.pdb" /> 324 <File Id="fil_kdestroy_pdb" Name="kdestroy.pdb" /> 325 <File Id="fil_kcpytkt_pdb" Name="kcpytkt.pdb" /> 326 <File Id="fil_kdeltkt_pdb" Name="kdeltkt.pdb" /> 327 <File Id="fil_kinit_pdb" Name="kinit.pdb" /> 328 <File Id="fil_klist_pdb" Name="klist.pdb" /> 329 <File Id="fil_kpasswd_pdb" Name="kpasswd.pdb" /> 330 <File Id="fil_kswitch_pdb" Name="kswitch.pdb" /> 331 <File Id="fil_kvno_pdb" Name="kvno.pdb" /> 332 <File Id="fil_ms2mit_pdb" Name="ms2mit.pdb" /> 333 <File Id="fil_mit2ms_pdb" Name="mit2ms.pdb" /> 334 </Component> 335 <?endif?> 336 337 <Directory Id="dirplugins" Name="plugins"> 338 <Directory Id="dirpreauth" Name="preauth" FileSource="$(var.PreauthDir)"> 339 <Component Id="cmf_spake32_dll" Guid="$(var.cmf_spake32_dll_guid)" DiskId="1"> 340 <File Id="fil_spake32_dll" Name="$(var.cmf_spake32_dll_name)" KeyPath="yes" /> 341 </Component> 342 <?if $(sys.BUILDARCH) = "x64"?> 343 <Component Id="cmf_spake64_dll" Guid="$(var.cmf_spake64_dll_guid)" DiskId="1"> 344 <File Id="fil_spake64_dll" Name="$(var.cmf_spake64_dll_name)" KeyPath="yes" /> 345 </Component> 346 <?endif?> 347 <?ifdef DebugSyms?> 348 <Component Id="cmf_preauth_debug" Guid="$(var.cmf_preauth_debug_guid)" DiskId="1"> 349 <?if $(sys.BUILDARCH) = "x86" ?> 350 <File Id="fil_spake32_pdb" Name="spake32.pdb" /> 351 <?else?> 352 <File Id="fil_spake32_pdb" Name="spake64.pdb" /> 353 <?endif?> 354 </Component> 355 <?endif?> 356 </Directory> <!-- /preauth --> 357 </Directory> <!-- /plugins --> 358 </Directory> <!-- /bin --> 359 360 <Directory Id="dirinc" Name="include" FileSource="$(var.IncDir)"> 361 <Directory Id="dirinc_krb5_gssapi" Name="gssapi" FileSource="$(var.IncDir)gssapi\"> 362 <Component Id="cmp_dirinc_krb5_gssapi" Guid="BD3C190B-1EBB-4d14-81DD-B2000DC4EAC7" DiskId="1"> 363 <File Id="fil_gssapi_h" Name="gssapi.h" KeyPath="yes" /> 364 <File Id="fil_gssapi_alloc_h" Name="gssapi_alloc.h" /> 365 <File Id="fil_gssapi_ext_h" Name="gssapi_ext.h" /> 366 <File Id="fil_gssapi_generic_h" Name="gssapi_generic.h" /> 367 <File Id="fil_gssapi_krb5_h" Name="gssapi_krb5.h" /> 368 </Component> 369 </Directory> 370 <Directory Id="dirinc_krb5_krb5" Name="krb5" FileSource="$(var.IncDir)krb5\"> 371 <Component Id="cmp_dirinc_krb5_krb5" Guid="D1E4E3D8-EF04-4DD6-B01E-F87876509869" DiskId="1"> 372 <File Id="fil_krb5_h_inc" Name="krb5.h" KeyPath="yes" /> 373 </Component> 374 </Directory> 375 <Component Id="cmp_dirinc_krb5" Guid="7FD8008B-2F46-4613-8A09-989F643258F1" DiskId="1"> 376 <File Id="fil_com_err_.h" Name="com_err.h" /> 377 <File Id="fil_krb5_.h" Name="krb5.h" KeyPath="yes" /> 378 <File Id="fil_profile_.h" Name="profile.h" /> 379 <File Id="fil_win_mac_.h" Name="win-mac.h" /> 380 </Component> 381 <Directory Id="dirinc_windows" Name="windows" FileSource="$(var.SrcDir)windows\include\"> 382<!-- TODO: CredentialCache.h? 383 <Component Id="cmp_dirinc_krbcc" Guid="2CE4B708-7D45-41e4-8A53-BF2D78451A81" DiskId="1"> 384 <File Id="fil_cacheapi_h" Name="cacheapi.h" KeyPath="yes" /> 385 </Component> --> 386 <Component Id="cmp_dirinc_leash" Guid="FCF269AB-D9BC-49bd-B9F3-D6EA9697D8D7" DiskId="1"> 387 <File Id="fil_leasherr_h" Name="leasherr.h" /> 388 <File Id="fil_leashinfo_h" Name="leashinfo.h" /> 389 <File Id="fil_leashwin_h" Name="leashwin.h" KeyPath="yes" /> 390 </Component> 391 <Component Id="cmp_dirinc_loadfuncs" Guid="C8E59D05-4502-498b-A107-1DF65C3A27D3" DiskId="1"> 392 <File Id="fil_loadfuncs_com_err_h" Name="loadfuncs-com_err.h" /> 393 <File Id="fil_loadfuncs_krb5_h" Name="loadfuncs-krb5.h" /> 394 <File Id="fil_loadfuncs_leash_h" Name="loadfuncs-leash.h" /> 395 <File Id="fil_loadfuncs_lsa_h" Name="loadfuncs-lsa.h" /> 396 <File Id="fil_loadfuncs_profile_h" Name="loadfuncs-profile.h" /> 397<!-- <File Id="fil_loadfuncs_c" Name="loadfuncs.c" /> --> 398 <File Id="fil_loadfuncs_h" Name="loadfuncs.h" KeyPath="yes" /> 399 </Component> 400 </Directory> 401 </Directory> 402 403 <Directory Id="dirlib" Name="lib" FileSource="$(var.LibDir)"> 404 <?if $(sys.BUILDARCH) = "x86" ?> 405 <Directory Id="dirlib_i386" Name="i386" FileSource="$(var.LibDir)"> 406 <Component Id="cmp_dirlib_i386" Guid="CFEE3ED4-92D4-49e1-BB78-8BCBC60C3E57" DiskId="1"> 407 <File Id="fil_comerr32_lib" Name="comerr32.lib" /> 408 <File Id="fil_gssapi32_lib" Name="gssapi32.lib" /> 409 <File Id="fil_krb5_32_lib" Name="krb5_32.lib" KeyPath="yes" /> 410 <File Id="fil_krbcc32_lib" Name="krbcc32.lib" /> 411 <File Id="fil_leashw32_lib" Name="leashw32.lib" /> 412 <File Id="fil_xpprof32_lib" Name="xpprof32.lib" /> 413 </Component> 414 </Directory> 415 <?endif?> 416 <?if $(sys.BUILDARCH) = "x64" ?> 417 <Directory Id="dirlib_amd64" Name="amd64" FileSource="$(var.LibDir)"> 418 <Component Id="cmp_dirlib_amd64" Guid="F9A54201-FFD6-4a45-B021-276D9F6C40A2" DiskId="1"> 419 <File Id="fil_comerr64_lib" Name="comerr64.lib" /> 420 <File Id="fil_gssapi64_lib" Name="gssapi64.lib" /> 421 <File Id="fil_krb5_64_lib" Name="krb5_64.lib" KeyPath="yes" /> 422 <File Id="fil_krbcc64_lib" Name="krbcc64.lib" /> 423 <File Id="fil_leashw64_lib" Name="leashw64.lib" /> 424 <File Id="fil_xpprof64_lib" Name="xpprof64.lib" /> 425 </Component> 426 </Directory> 427 <?endif?> 428 </Directory> 429 </Directory> <!-- /Kerberos --> 430 </Directory> <!-- /MIT --> 431 </Directory> <!-- /Program Files --> 432 <Directory Id="CommonAppDataFolder" Name="CommonAppDataFolder"> 433 <Directory Id="APPDATAMITDIR" Name="MIT"> 434 <Directory Id="APPDATAKERBEROS5DIR" Name="Kerberos5"> 435 <Component Id="cmf_krb5_ini" Guid="C1AF0670-BBF1-4AA6-B2A6-6C8B1584A1F4" NeverOverwrite="yes" Permanent="yes" DiskId="1"> 436 <File Id="fil_krb5_ini" Name="krb5.ini" Source="$(var.ConfigDir)krb5.ini" KeyPath="yes" /> 437 <CreateFolder/> 438 </Component> 439 </Directory> 440 </Directory> 441 </Directory> 442 443 <!-- Start Menu shortcut --> 444 <Directory Id="ProgramMenuFolder"> 445 <Directory Id="dirShortcut" Name="$(var.BaseProductName)" /> 446 </Directory> 447 448 <Directory Id="StartupFolder"> 449 </Directory> 450 451 <Component Id="rcm_common" Guid="486D84B6-CCE5-4b95-B8E2-7DFBDB4CF9A2"> 452 <RegistryKey Id="reg_common0" Root="HKLM" Key="$(var.KfwRegRoot)" Action="createAndRemoveOnUninstall" /> 453 <RegistryValue Id="reg_common2" Root="HKLM" Key="$(var.KfwRegRoot)" Name="InstallDir" Type="string" Value="[KERBEROSDIR]" KeyPath="yes" /> 454 <?ifdef Debug?> 455 <RegistryKey Id="reg_common3" Root="HKLM" Key="$(var.KfwRegRoot)\CurrentVersion" Action="createAndRemoveOnUninstall"/> 456 <RegistryValue Id="reg_common4" Root="HKLM" Key="$(var.KfwRegRoot)\CurrentVersion" Name="Debug" Type="integer" Value="1"/> 457 <RegistryKey Id="reg_common5" Root="HKLM" Key="$(var.KfwRegRoot)\$(var.VersionString)" Action="createAndRemoveOnUninstall"/> 458 <RegistryValue Id="reg_common6" Root="HKLM" Key="$(var.KfwRegRoot)\$(var.VersionString)" Name="Debug" Type="integer" Value="1"/> 459 <?else?> 460 <RemoveRegistryKey Id="reg_common7" Root="HKLM" Key="$(var.KfwRegRoot)\CurrentVersion" Action="removeOnInstall"/> 461 <RemoveRegistryKey Id="reg_common8" Root="HKLM" Key="$(var.KfwRegRoot)\$(var.VersionString)" Action="removeOnInstall"/> 462 <?endif?> 463 <?if $(sys.BUILDARCH) = "x64"?> 464 <RegistryKey Id="reg_common0_32" Root="HKLM" Key="$(var.KfwRegWow6432Root)" Action="createAndRemoveOnUninstall" /> 465 <!-- Cannot set KeyPath twice in one Component --> 466 <RegistryValue Id="reg_common2_32" Root="HKLM" Key="$(var.KfwRegWow6432Root)" Name="InstallDir" Type="string" Value="[KERBEROSDIR]"/> 467 <?ifdef Debug?> 468 <RegistryKey Id="reg_common3_32" Root="HKLM" Key="$(var.KfwRegWow6432Root)\CurrentVersion" Action="createAndRemoveOnUninstall"/> 469 <RegistryValue Id="reg_common4_32" Root="HKLM" Key="$(var.KfwRegWow6432Root)\CurrentVersion" Name="Debug" Type="integer" Value="1"/> 470 <RegistryKey Id="reg_common5_32" Root="HKLM" Key="$(var.KfwRegWow6432Root)\$(var.VersionString)" Action="createAndRemoveOnUninstall"/> 471 <RegistryValue Id="reg_common6_32" Root="HKLM" Key="$(var.KfwRegWow6432Root)\$(var.VersionString)" Name="Debug" Type="integer" Value="1"/> 472 <?else?> 473 <RemoveRegistryKey Id="reg_common7_32" Root="HKLM" Key="$(var.KfwRegWow6432Root)\CurrentVersion" Action="removeOnInstall"/> 474 <RemoveRegistryKey Id="reg_common8_32" Root="HKLM" Key="$(var.KfwRegWow6432Root)\$(var.VersionString)" Action="removeOnInstall"/> 475 <?endif?> 476 <?endif?> 477 </Component> 478 479 <Component Id="rcm_client" Guid="901179B2-7369-43b1-ACF3-4C7F37482CC7"> 480 <RegistryKey Id="reg_client0" Root="HKLM" Key="$(var.KfwRegRoot)\Client" Action="createAndRemoveOnUninstall"/> 481 482 <RegistryKey Id="reg_client1" Root="HKLM" Key="$(var.KfwRegRoot)\Client\CurrentVersion" Action="createAndRemoveOnUninstall"/> 483 <RegistryValue Id="reg_client3" Root="HKLM" Key="$(var.KfwRegRoot)\Client\CurrentVersion" Name="VersionString" Type="string" Value="$(var.VersionString)" /> 484 <RegistryValue Id="reg_client4" Root="HKLM" Key="$(var.KfwRegRoot)\Client\CurrentVersion" Name="Title" Type="string" Value="KfW" /> 485 <RegistryValue Id="reg_client5" Root="HKLM" Key="$(var.KfwRegRoot)\Client\CurrentVersion" Name="Description" Type="string" Value="$(var.ProductFullName)" /> 486 <RegistryValue Id="reg_client6" Root="HKLM" Key="$(var.KfwRegRoot)\Client\CurrentVersion" Name="PathName" Type="string" Value="[KERBEROSDIR]" /> 487 <RegistryValue Id="reg_client7" Root="HKLM" Key="$(var.KfwRegRoot)\Client\CurrentVersion" Name="Software Type" Type="string" Value="Authentication" /> 488 <RegistryValue Id="reg_client8" Root="HKLM" Key="$(var.KfwRegRoot)\Client\CurrentVersion" Name="MajorVersion" Type="integer" Value="$(var.VersionMajor)" /> 489 <RegistryValue Id="reg_client9" Root="HKLM" Key="$(var.KfwRegRoot)\Client\CurrentVersion" Name="MinorVersion" Type="integer" Value="$(var.VersionMinor)" /> 490 <RegistryValue Id="reg_client10" Root="HKLM" Key="$(var.KfwRegRoot)\Client\CurrentVersion" Name="PatchLevel" Type="integer" Value="$(var.VersionPatch)" /> 491 492 <RegistryKey Id="reg_client11" Root="HKLM" Key="$(var.KfwRegRoot)\Client\$(var.VersionString)" Action="createAndRemoveOnUninstall"/> 493 <RegistryValue Id="reg_client13" Root="HKLM" Key="$(var.KfwRegRoot)\Client\$(var.VersionString)" Name="VersionString" Type="string" Value="$(var.VersionString)" KeyPath="yes" /> 494 <RegistryValue Id="reg_client14" Root="HKLM" Key="$(var.KfwRegRoot)\Client\$(var.VersionString)" Name="Title" Type="string" Value="KfW" /> 495 <RegistryValue Id="reg_client15" Root="HKLM" Key="$(var.KfwRegRoot)\Client\$(var.VersionString)" Name="Description" Type="string" Value="$(var.ProductFullName)" /> 496 <RegistryValue Id="reg_client16" Root="HKLM" Key="$(var.KfwRegRoot)\Client\$(var.VersionString)" Name="PathName" Type="string" Value="[KERBEROSDIR]" /> 497 <RegistryValue Id="reg_client17" Root="HKLM" Key="$(var.KfwRegRoot)\Client\$(var.VersionString)" Name="Software Type" Type="string" Value="Authentication" /> 498 <RegistryValue Id="reg_client18" Root="HKLM" Key="$(var.KfwRegRoot)\Client\$(var.VersionString)" Name="MajorVersion" Type="integer" Value="$(var.VersionMajor)" /> 499 <RegistryValue Id="reg_client19" Root="HKLM" Key="$(var.KfwRegRoot)\Client\$(var.VersionString)" Name="MinorVersion" Type="integer" Value="$(var.VersionMinor)" /> 500 <RegistryValue Id="reg_client20" Root="HKLM" Key="$(var.KfwRegRoot)\Client\$(var.VersionString)" Name="PatchLevel" Type="integer" Value="$(var.VersionPatch)" /> 501 </Component> 502 503 <Component Id="rcm_sdk" Guid="96AA90C7-8C60-4341-A15B-3DEDF29DA9F1"> 504 <RegistryKey Id="reg_sdk0" Root="HKLM" Key="$(var.KfwRegRoot)\SDK" Action="createAndRemoveOnUninstall"/> 505 506 <RegistryKey Id="reg_sdk1" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\CurrentVersion" Action="createAndRemoveOnUninstall"/> 507 <RegistryValue Id="reg_sdk3" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\CurrentVersion" Name="VersionString" Type="string" Value="$(var.VersionString)" /> 508 <RegistryValue Id="reg_sdk4" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\CurrentVersion" Name="Title" Type="string" Value="KfW" /> 509 <RegistryValue Id="reg_sdk5" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\CurrentVersion" Name="Description" Type="string" Value="$(var.ProductFullName)" /> 510 <RegistryValue Id="reg_sdk6" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\CurrentVersion" Name="PathName" Type="string" Value="[KERBEROSDIR]" /> 511 <RegistryValue Id="reg_sdk7" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\CurrentVersion" Name="Software Type" Type="string" Value="Authentication" /> 512 <RegistryValue Id="reg_sdk8" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\CurrentVersion" Name="MajorVersion" Type="integer" Value="$(var.VersionMajor)" /> 513 <RegistryValue Id="reg_sdk9" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\CurrentVersion" Name="MinorVersion" Type="integer" Value="$(var.VersionMinor)" /> 514 <RegistryValue Id="reg_sdk10" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\CurrentVersion" Name="PatchLevel" Type="integer" Value="$(var.VersionPatch)" /> 515 516 <RegistryKey Id="reg_sdk11" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\$(var.VersionString)" Action="createAndRemoveOnUninstall"/> 517 <RegistryValue Id="reg_sdk13" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\$(var.VersionString)" Name="VersionString" Type="string" Value="$(var.VersionString)" KeyPath="yes" /> 518 <RegistryValue Id="reg_sdk14" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\$(var.VersionString)" Name="Title" Type="string" Value="KfW" /> 519 <RegistryValue Id="reg_sdk15" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\$(var.VersionString)" Name="Description" Type="string" Value="$(var.ProductFullName)" /> 520 <RegistryValue Id="reg_sdk16" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\$(var.VersionString)" Name="PathName" Type="string" Value="[KERBEROSDIR]" /> 521 <RegistryValue Id="reg_sdk17" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\$(var.VersionString)" Name="Software Type" Type="string" Value="Authentication" /> 522 <RegistryValue Id="reg_sdk18" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\$(var.VersionString)" Name="MajorVersion" Type="integer" Value="$(var.VersionMajor)" /> 523 <RegistryValue Id="reg_sdk19" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\$(var.VersionString)" Name="MinorVersion" Type="integer" Value="$(var.VersionMinor)" /> 524 <RegistryValue Id="reg_sdk20" Root="HKLM" Key="$(var.KfwRegRoot)\SDK\$(var.VersionString)" Name="PatchLevel" Type="integer" Value="$(var.VersionPatch)" /> 525 </Component> 526 527 <Component Id="rcm_docs" Guid="C7EADA0F-8FF7-4e7b-9372-5553BDD5812F"> 528 <RegistryKey Id="reg_docs0" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation" Action="createAndRemoveOnUninstall"/> 529 530 <RegistryKey Id="reg_docs1" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\CurrentVersion" Action="createAndRemoveOnUninstall"/> 531 <RegistryValue Id="reg_docs3" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\CurrentVersion" Name="VersionString" Type="string" Value="$(var.VersionString)" /> 532 <RegistryValue Id="reg_docs4" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\CurrentVersion" Name="Title" Type="string" Value="KfW" /> 533 <RegistryValue Id="reg_docs5" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\CurrentVersion" Name="Description" Type="string" Value="$(var.ProductFullName)" /> 534 <RegistryValue Id="reg_docs6" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\CurrentVersion" Name="PathName" Type="string" Value="[KERBEROSDIR]" /> 535 <RegistryValue Id="reg_docs7" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\CurrentVersion" Name="Software Type" Type="string" Value="Authentication" /> 536 <RegistryValue Id="reg_docs8" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\CurrentVersion" Name="MajorVersion" Type="integer" Value="$(var.VersionMajor)" /> 537 <RegistryValue Id="reg_docs9" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\CurrentVersion" Name="MinorVersion" Type="integer" Value="$(var.VersionMinor)" /> 538 <RegistryValue Id="reg_docs10" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\CurrentVersion" Name="PatchLevel" Type="integer" Value="$(var.VersionPatch)" /> 539 540 <RegistryKey Id="reg_docs11" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\$(var.VersionString)" Action="createAndRemoveOnUninstall"/> 541 <RegistryValue Id="reg_docs13" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\$(var.VersionString)" Name="VersionString" Type="string" Value="$(var.VersionString)" KeyPath="yes" /> 542 <RegistryValue Id="reg_docs14" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\$(var.VersionString)" Name="Title" Type="string" Value="KfW" /> 543 <RegistryValue Id="reg_docs15" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\$(var.VersionString)" Name="Description" Type="string" Value="$(var.ProductFullName)" /> 544 <RegistryValue Id="reg_docs16" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\$(var.VersionString)" Name="PathName" Type="string" Value="[KERBEROSDIR]" /> 545 <RegistryValue Id="reg_docs17" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\$(var.VersionString)" Name="Software Type" Type="string" Value="Authentication" /> 546 <RegistryValue Id="reg_docs18" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\$(var.VersionString)" Name="MajorVersion" Type="integer" Value="$(var.VersionMajor)" /> 547 <RegistryValue Id="reg_docs19" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\$(var.VersionString)" Name="MinorVersion" Type="integer" Value="$(var.VersionMinor)" /> 548 <RegistryValue Id="reg_docs20" Root="HKLM" Key="$(var.KfwRegRoot)\Documentation\$(var.VersionString)" Name="PatchLevel" Type="integer" Value="$(var.VersionPatch)" /> 549 </Component> 550 551 <!-- Shared assembly runtime for VS 2010 --> 552 <!-- Note that these cause numerous LGHT1055 and ICE82 warnings. They are unavoidable but innocuous. --> 553 <?ifdef CL1600?> 554 <?ifdef env.VCToolsRedistDir?> 555 <?define MM="$(env.VCToolsRedistDir)MergeModules"?> 556 <?else?> 557 <?ifdef (env.CommonProgramFiles6432)?> 558 <?define MM="$(env.CommonProgramFiles(x86)/Merge Modules"?> 559 <?else?> 560 <?define MM="$(env.CommonProgramFiles)/Merge Modules"?> 561 <?endif?> 562 <?endif?> 563 <?if $(sys.BUILDARCH) = "x64" ?> 564 <?ifndef Debug?> 565 <Merge Id="MSVCRT$(var.VCVer)MEM64" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_CRT_x64.msm"/> 566 <Merge Id="MSVCRT$(var.VCVer)MFC64" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_MFC_x64.msm"/> 567 <Merge Id="MSVCRT$(var.VCVer)MFL64" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_MFCLOC_x64.msm"/> 568 <Merge Id="MSVCRT$(var.VCVer)MEM86" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_CRT_x86.msm"/> 569 <Merge Id="MSVCRT$(var.VCVer)MFC86" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_MFC_x86.msm"/> 570 <Merge Id="MSVCRT$(var.VCVer)MFL86" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_MFCLOC_x86.msm"/> 571 <?else?> 572 <Merge Id="MSVCRT$(var.VCVer)MEM64" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_DebugCRT_x64.msm"/> 573 <Merge Id="MSVCRT$(var.VCVer)MFC64" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_DebugMFC_x64.msm"/> 574 <Merge Id="MSVCRT$(var.VCVer)MFL64" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_MFCLOC_x64.msm"/> 575 <Merge Id="MSVCRT$(var.VCVer)MEM86" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_DebugCRT_x86.msm"/> 576 <Merge Id="MSVCRT$(var.VCVer)MFC86" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_DebugMFC_x86.msm"/> 577 <Merge Id="MSVCRT$(var.VCVer)MFL86" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_MFCLOC_x86.msm"/> 578 <?endif?> 579 <?else?> 580 <?ifndef Debug?> 581 <Merge Id="MSVCRT$(var.VCVer)MEM86" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_CRT_x86.msm"/> 582 <Merge Id="MSVCRT$(var.VCVer)MFC86" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_MFC_x86.msm"/> 583 <Merge Id="MSVCRT$(var.VCVer)MFL86" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_MFCLOC_x86.msm"/> 584 <?else?> 585 <Merge Id="MSVCRT$(var.VCVer)MEM86" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_DebugCRT_x86.msm"/> 586 <Merge Id="MSVCRT$(var.VCVer)MFC86" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_DebugMFC_x86.msm"/> 587 <Merge Id="MSVCRT$(var.VCVer)MFL86" DiskId="1" Language="0" SourceFile="$(var.MM)\Microsoft_VC$(var.VCVer)_MFCLOC_x86.msm"/> 588 <?endif?> 589 <?endif?> 590 <?endif?> 591 592</Directory> 593 594<!-- Start Menu shortcut --> 595<DirectoryRef Id="dirShortcut"> 596 <Component Id="SMshortcut" Guid="FBB3BCED-16B7-4C5F-AE39-425B3E62503A"> 597 <Shortcut Id="sc_leash_exe" Name="MIT Kerberos Ticket Manager.lnk" Target="[KERBEROSDIR]\bin\MIT Kerberos.exe" WorkingDirectory="dirbin" Arguments="[LEASHAUTOINIT]" /> 598 <RemoveFolder Id="removeFolder" On ="uninstall" /> 599 <RegistryValue Root="HKCU" Key="Software\MIT\Kerberos5" Name="installedStartMenu" Type="integer" Value="1" KeyPath="yes"/> 600 </Component> 601</DirectoryRef> 602<!-- Desktop shortcut --> 603<DirectoryRef Id="DesktopFolder"> 604 <Component Id="Dshortcut" Guid="B1713C3F-956D-4301-A38E-3E3EFFCF6990"> 605 <Shortcut Id="sc_leash_desktop_exe" Name="MIT Kerberos Ticket Manager.lnk" Target="[KERBEROSDIR]\bin\MIT Kerberos.exe" WorkingDirectory="dirbin" Arguments="[LEASHAUTOINIT]" /> 606 <RemoveFolder Id="rem_fol_desktop" On="uninstall" /> 607 <RegistryValue Root="HKCU" Key="Software\MIT\Kerberos5" Name="installedDesktop" Type="integer" Value="1" KeyPath="yes" /> 608 </Component> 609</DirectoryRef> 610 611</Include> 612