blob: e5eef54bd87b1a268a508d461246870889b3263d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
|
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<!--
.NET Framework installation state properties
Official documentation can be found at the following location:
.NET Framework 2.0 - http://msdn.microsoft.com/library/aa480243.aspx
-->
<!-- set to #1 if the .NET Framework 2.0 is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20" Secure="yes">
<RegistrySearch Id="NetFramework20" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- Indicates the service pack level for the .NET Framework 2.0. -->
<Fragment>
<Property Id="NETFRAMEWORK20_SP_LEVEL" Secure="yes">
<RegistrySearch Id="NetFramework20SP" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727" Name="SP" Type="raw" />
</Property>
</Fragment>
<!-- Location of .NET Framework 2.0 redistributable install root directory -->
<Fragment>
<Property Id="NETFRAMEWORK20INSTALLROOTDIR" Secure="yes">
<RegistrySearch Id="NetFxInstallRootForNetfx20Search" Type="raw" Root="HKLM" Key="Software\Microsoft\.NETFramework" Name="InstallRoot">
<DirectorySearch Id="NetFx20InstallRootSearch" Path="v2.0.50727" Depth="0" />
</RegistrySearch>
</Property>
</Fragment>
<!-- Location of .NET Framework 2.0 (64-bit) redistributable install root directory -->
<Fragment>
<Property Id="NETFRAMEWORK20INSTALLROOTDIR64" Secure="yes">
<RegistrySearch Id="NetFxInstallRootForNetfx20Search64" Type="raw" Root="HKLM" Key="Software\Microsoft\.NETFramework" Name="InstallRoot" Bitness="always64">
<DirectorySearch Id="NetFx20InstallRootSearch64" Path="v2.0.50727" Depth="0" />
</RegistrySearch>
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Chinese (Simplified) language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_ZH_CN_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20ZhCnLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\2052" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Chinese (Traditional) language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_ZH_TW_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20ZhTwLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1028" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Czech language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_CS_CZ_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20CsCzLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1029" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Danish language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_DA_DK_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20DaDkLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1030" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Dutch language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_NL_NL_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20NlNlLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1043" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Finnish language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_FI_FI_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20FiFiLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1035" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 French language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_FR_FR_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20FrFrLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1036" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 German language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_DE_DE_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20DeDeLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1031" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Greek language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_EL_GR_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20ElGrLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1032" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Hungarian language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_HU_HU_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20HuHuLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1038" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Italian language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_IT_IT_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20ItItLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1040" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Japanese language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_JA_JP_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20JaJpLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1041" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Korean language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_KO_KR_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20KoKrLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1042" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Norwegian language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_NB_NO_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20NbNoLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1044" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Polish language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_PL_PL_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20PlPlLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1045" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Portuguese (Brazil) language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_PT_BR_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20PtBrLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1046" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Portuguese (Portugal) language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_PT_PT_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20PtPtLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\2070" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Russian language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_RU_RU_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20RuRuLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1049" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Spanish language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_ES_ES_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20EsEsLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\3082" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Swedish language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_SV_SE_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20SvSeLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1053" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- set to #1 if the .NET Framework 2.0 Turkish language pack is installed (not set otherwise) -->
<Fragment>
<Property Id="NETFRAMEWORK20_TR_TR_LANGPACK" Secure="yes">
<RegistrySearch Id="NETFRAMEWORK20TrTrLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1055" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- location of the .NET Framework 2.0 SDK installation root -->
<Fragment>
<Property Id="NETFRAMEWORK20SDKDIR" Secure="yes">
<RegistrySearch Id="NetFramework20SDKDir" Root="HKLM" Key="Software\Microsoft\.NETFramework" Name="sdkInstallRootv2.0" Type="raw" />
</Property>
</Fragment>
</Wix>
|