aboutsummaryrefslogtreecommitdiff
path: root/src/xsd/util.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'src/xsd/util.xsd')
-rw-r--r--src/xsd/util.xsd2536
1 files changed, 2536 insertions, 0 deletions
diff --git a/src/xsd/util.xsd b/src/xsd/util.xsd
new file mode 100644
index 00000000..1b649f48
--- /dev/null
+++ b/src/xsd/util.xsd
@@ -0,0 +1,2536 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- 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. -->
3
4
5<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
6 xmlns:xse="http://wixtoolset.org/schemas/XmlSchemaExtension"
7 xmlns:html="http://www.w3.org/1999/xhtml"
8 xmlns:wxs="http://wixtoolset.org/schemas/v4/wxs"
9 targetNamespace="http://wixtoolset.org/schemas/v4/wxs/util"
10 xmlns="http://wixtoolset.org/schemas/v4/wxs/util">
11 <xs:annotation>
12 <xs:documentation>
13 The source code schema for the WiX Toolset Utility Extension.
14 </xs:documentation>
15 </xs:annotation>
16
17 <xs:import namespace="http://wixtoolset.org/schemas/v4/wxs" />
18
19 <xs:element name="CloseApplication">
20 <xs:annotation>
21 <xs:appinfo>
22 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
23 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
24 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
25 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
26 </xs:appinfo>
27 <xs:documentation>Closes applications or schedules a reboot if application cannot be closed.</xs:documentation>
28 </xs:annotation>
29 <xs:complexType>
30 <xs:choice minOccurs="0" maxOccurs="unbounded">
31 <xs:any namespace="##other" processContents="lax">
32 <xs:annotation>
33 <xs:documentation>
34 Extensibility point in the WiX XML Schema. Schema extensions can register additional
35 elements at this point in the schema.
36 </xs:documentation>
37 </xs:annotation>
38 </xs:any>
39 </xs:choice>
40 <xs:attribute name="Id" type="xs:string">
41 <xs:annotation>
42 <xs:documentation>Identifier for the close application (primary key). If the Id is not specified, one will be generated.</xs:documentation>
43 </xs:annotation>
44 </xs:attribute>
45 <xs:attribute name="Target" type="xs:string" use="required">
46 <xs:annotation>
47 <xs:documentation>Name of the exectuable to be closed. This should only be the file name.</xs:documentation>
48 </xs:annotation>
49 </xs:attribute>
50 <xs:attribute name="Condition" type="xs:string">
51 <xs:annotation>
52 <xs:documentation>
53 Condition that determines if the application should be closed. Must be blank or evaluate to true
54 for the application to be scheduled for closing.
55 </xs:documentation>
56 </xs:annotation>
57 </xs:attribute>
58 <xs:attribute name="Description" type="xs:string">
59 <xs:annotation>
60 <xs:documentation>Description to show if application is running and needs to be closed.</xs:documentation>
61 </xs:annotation>
62 </xs:attribute>
63 <xs:attribute name="Sequence" type="wxs:Integer">
64 <xs:annotation>
65 <xs:documentation>Optionally orders the applications to be closed.</xs:documentation>
66 </xs:annotation>
67 </xs:attribute>
68 <xs:attribute name="CloseMessage" type="wxs:YesNoTypeUnion">
69 <xs:annotation>
70 <xs:documentation>Optionally sends a close message to the application. Default is no.</xs:documentation>
71 </xs:annotation>
72 </xs:attribute>
73 <xs:attribute name="EndSessionMessage" type="wxs:YesNoTypeUnion">
74 <xs:annotation>
75 <xs:documentation>Sends WM_QUERYENDSESSION then WM_ENDSESSION messages to the application. Default is "no".</xs:documentation>
76 </xs:annotation>
77 </xs:attribute>
78 <xs:attribute name="ElevatedCloseMessage" type="wxs:YesNoTypeUnion">
79 <xs:annotation>
80 <xs:documentation>Optionally sends a close message to the application from deffered action without impersonation. Default is no.</xs:documentation>
81 </xs:annotation>
82 </xs:attribute>
83 <xs:attribute name="ElevatedEndSessionMessage" type="wxs:YesNoTypeUnion">
84 <xs:annotation>
85 <xs:documentation>Sends WM_QUERYENDSESSION then WM_ENDSESSION messages to the application from a deffered action without impersonation. Default is "no".</xs:documentation>
86 </xs:annotation>
87 </xs:attribute>
88 <xs:attribute name="RebootPrompt" type="wxs:YesNoTypeUnion">
89 <xs:annotation>
90 <xs:documentation>
91 Optionally prompts for reboot if application is still running.
92 The TerminateProcess attribute must be "no" or not specified if this attribute is "yes".
93 The default is "yes".
94 </xs:documentation>
95 </xs:annotation>
96 </xs:attribute>
97 <xs:attribute name="PromptToContinue" type="wxs:YesNoTypeUnion">
98 <xs:annotation>
99 <xs:documentation>
100 When this attribute is set to "yes", the user will be prompted when the application is still running. The Description attribute must contain the message to
101 display in the prompt. The prompt occurs before executing any of the other options and gives the options to "Abort", "Retry", or "Ignore". Abort will cancel
102 the install. Retry will attempt the check again and if the application is still running, prompt again. "Ignore" will continue and execute any other options
103 set on the CloseApplication element. The default is "no".
104 </xs:documentation>
105 </xs:annotation>
106 </xs:attribute>
107 <xs:attribute name="Property" type="xs:string">
108 <xs:annotation>
109 <xs:documentation>Property to be set if application is still running. Useful for launch conditions or to conditionalize custom UI to ask user to shut down apps.</xs:documentation>
110 </xs:annotation>
111 </xs:attribute>
112 <xs:attribute name="TerminateProcess" type="wxs:Integer">
113 <xs:annotation>
114 <xs:documentation>
115 Attempts to terminates process and return the attribute value as the process's exit code if the application is still running after sending any requested close and/or end session messages.
116 If this attribute is specified, the RebootPrompt attribute must be "no".
117 </xs:documentation>
118 </xs:annotation>
119 </xs:attribute>
120 <xs:attribute name="Timeout" type="wxs:Integer">
121 <xs:annotation>
122 <xs:documentation>
123 Optional time in seconds to wait for the application to exit after the close and/or end session messages. If the application is still running after the timeout then
124 the RebootPrompt or TerminateProcess attributes will be considered. The default value is "5" seconds.
125 </xs:documentation>
126 </xs:annotation>
127 </xs:attribute>
128 <xs:anyAttribute namespace="##other" processContents="lax">
129 <xs:annotation>
130 <xs:documentation>
131 Extensibility point in the WiX XML Schema. Schema extensions can register additional
132 attributes at this point in the schema.
133 </xs:documentation>
134 </xs:annotation>
135 </xs:anyAttribute>
136 </xs:complexType>
137 </xs:element>
138
139 <xs:element name="ComponentSearch">
140 <xs:annotation>
141 <xs:documentation>Describes a component search.</xs:documentation>
142 <xs:appinfo>
143 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
144 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
145 </xs:appinfo>
146 </xs:annotation>
147 <xs:complexType>
148 <xs:choice minOccurs="0" maxOccurs="unbounded">
149 <xs:any namespace="##other" processContents="lax">
150 <xs:annotation>
151 <xs:documentation>
152 Extensibility point in the WiX XML Schema. Schema extensions can register additional
153 elements at this point in the schema.
154 </xs:documentation>
155 </xs:annotation>
156 </xs:any>
157 </xs:choice>
158 <xs:attributeGroup ref="SearchCommonAttributes" />
159 <xs:attribute name="Guid" type="xs:string" use="required">
160 <xs:annotation>
161 <xs:documentation>Component to search for.</xs:documentation>
162 </xs:annotation>
163 </xs:attribute>
164 <xs:attribute name="ProductCode" type="xs:string">
165 <xs:annotation>
166 <xs:documentation>Optional ProductCode to determine if the component is installed.</xs:documentation>
167 </xs:annotation>
168 </xs:attribute>
169 <xs:attribute name="Result">
170 <xs:annotation>
171 <xs:documentation>
172 Rather than saving the matching key path into the variable, a ComponentSearch can save an attribute of the component instead.
173 </xs:documentation>
174 </xs:annotation>
175 <xs:simpleType>
176 <xs:restriction base="xs:NMTOKEN">
177 <xs:enumeration value="directory">
178 <xs:annotation>
179 <xs:documentation>Saves the parent directory for the component's file key path; other types of key path are returned unmodified.</xs:documentation>
180 </xs:annotation>
181 </xs:enumeration>
182 <xs:enumeration value="keyPath">
183 <xs:annotation>
184 <xs:documentation>Saves the key path of the component if installed. This is the default.</xs:documentation>
185 </xs:annotation>
186 </xs:enumeration>
187 <xs:enumeration value="state">
188 <xs:annotation>
189 <xs:documentation>Saves the state of the component: absent (2), locally installed (3), will run from source (4), or installed in default location (either local or from source) (5)</xs:documentation>
190 </xs:annotation>
191 </xs:enumeration>
192 </xs:restriction>
193 </xs:simpleType>
194 </xs:attribute>
195 <xs:anyAttribute namespace="##other" processContents="lax">
196 <xs:annotation>
197 <xs:documentation>
198 Extensibility point in the WiX XML Schema. Schema extensions can register additional
199 attributes at this point in the schema.
200 </xs:documentation>
201 </xs:annotation>
202 </xs:anyAttribute>
203 </xs:complexType>
204 </xs:element>
205
206 <xs:element name="ComponentSearchRef">
207 <xs:annotation>
208 <xs:documentation>References a ComponentSearch.</xs:documentation>
209 <xs:appinfo>
210 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
211 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
212 </xs:appinfo>
213 </xs:annotation>
214 <xs:complexType>
215 <xs:choice minOccurs="0" maxOccurs="unbounded">
216 <xs:any namespace="##other" processContents="lax">
217 <xs:annotation>
218 <xs:documentation>
219 Extensibility point in the WiX XML Schema. Schema extensions can register additional
220 elements at this point in the schema.
221 </xs:documentation>
222 </xs:annotation>
223 </xs:any>
224 </xs:choice>
225 <xs:attribute name="Id" type="xs:string" use="required" />
226 <xs:anyAttribute namespace="##other" processContents="lax">
227 <xs:annotation>
228 <xs:documentation>
229 Extensibility point in the WiX XML Schema. Schema extensions can register additional
230 attributes at this point in the schema.
231 </xs:documentation>
232 </xs:annotation>
233 </xs:anyAttribute>
234 </xs:complexType>
235 </xs:element>
236
237 <xs:element name="DirectorySearch">
238 <xs:annotation>
239 <xs:documentation>Describes a directory search.</xs:documentation>
240 <xs:appinfo>
241 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
242 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
243 </xs:appinfo>
244 </xs:annotation>
245 <xs:complexType>
246 <xs:choice minOccurs="0" maxOccurs="unbounded">
247 <xs:any namespace="##other" processContents="lax">
248 <xs:annotation>
249 <xs:documentation>
250 Extensibility point in the WiX XML Schema. Schema extensions can register additional
251 elements at this point in the schema.
252 </xs:documentation>
253 </xs:annotation>
254 </xs:any>
255 </xs:choice>
256 <xs:attributeGroup ref="SearchCommonAttributes" />
257 <xs:attribute name="Path" type="xs:string">
258 <xs:annotation>
259 <xs:documentation>Directory path to search for.</xs:documentation>
260 </xs:annotation>
261 </xs:attribute>
262 <xs:attribute name="DisableFileRedirection" type="wxs:YesNoTypeUnion">
263 <xs:annotation>
264 <xs:documentation>When set to "yes" and the running bundle is 32-bit, Wow64DisableWow64FsRedirection is called before starting the search.</xs:documentation>
265 </xs:annotation>
266 </xs:attribute>
267 <xs:attribute name="Result">
268 <xs:annotation>
269 <xs:documentation>
270 Rather than saving the matching directory path into the variable, a DirectorySearch can save an
271 attribute of the matching directory instead.
272 </xs:documentation>
273 </xs:annotation>
274 <xs:simpleType>
275 <xs:restriction base="xs:NMTOKEN">
276 <xs:enumeration value="exists">
277 <xs:annotation>
278 <xs:documentation>Saves true if a matching directory is found; false otherwise.</xs:documentation>
279 </xs:annotation>
280 </xs:enumeration>
281 </xs:restriction>
282 </xs:simpleType>
283 </xs:attribute>
284 <xs:anyAttribute namespace="##other" processContents="lax">
285 <xs:annotation>
286 <xs:documentation>
287 Extensibility point in the WiX XML Schema. Schema extensions can register additional
288 attributes at this point in the schema.
289 </xs:documentation>
290 </xs:annotation>
291 </xs:anyAttribute>
292 </xs:complexType>
293 </xs:element>
294
295 <xs:element name="DirectorySearchRef">
296 <xs:annotation>
297 <xs:documentation>References a DirectorySearch.</xs:documentation>
298 <xs:appinfo>
299 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
300 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
301 </xs:appinfo>
302 </xs:annotation>
303 <xs:complexType>
304 <xs:choice minOccurs="0" maxOccurs="unbounded">
305 <xs:any namespace="##other" processContents="lax">
306 <xs:annotation>
307 <xs:documentation>
308 Extensibility point in the WiX XML Schema. Schema extensions can register additional
309 elements at this point in the schema.
310 </xs:documentation>
311 </xs:annotation>
312 </xs:any>
313 </xs:choice>
314 <xs:attribute name="Id" type="xs:string" use="required" />
315 <xs:anyAttribute namespace="##other" processContents="lax">
316 <xs:annotation>
317 <xs:documentation>
318 Extensibility point in the WiX XML Schema. Schema extensions can register additional
319 attributes at this point in the schema.
320 </xs:documentation>
321 </xs:annotation>
322 </xs:anyAttribute>
323 </xs:complexType>
324 </xs:element>
325
326 <xs:element name="EventSource">
327 <xs:annotation>
328 <xs:appinfo>
329 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
330 </xs:appinfo>
331 <xs:documentation>Creates an event source.</xs:documentation>
332 </xs:annotation>
333 <xs:complexType>
334 <xs:choice minOccurs="0" maxOccurs="unbounded">
335 <xs:any namespace="##other" processContents="lax">
336 <xs:annotation>
337 <xs:documentation>
338 Extensibility point in the WiX XML Schema. Schema extensions can register additional
339 elements at this point in the schema.
340 </xs:documentation>
341 </xs:annotation>
342 </xs:any>
343 </xs:choice>
344 <xs:attribute name="CategoryCount" type="wxs:Integer">
345 <xs:annotation>
346 <xs:documentation>
347 The number of categories in CategoryMessageFile. CategoryMessageFile
348 must be specified too.
349 </xs:documentation>
350 </xs:annotation>
351 </xs:attribute>
352 <xs:attribute name="CategoryMessageFile" type="xs:string">
353 <xs:annotation>
354 <xs:documentation>
355 Name of the category message file. CategoryCount must be specified too.
356 Note that this is a formatted field, so you can use [#fileId] syntax to
357 refer to a file being installed. It is also written as a REG_EXPAND_SZ
358 string, so you can use %environment_variable% syntax to refer to a file
359 already present on the user's machine.
360 </xs:documentation>
361 </xs:annotation>
362 </xs:attribute>
363 <xs:attribute name="EventMessageFile" type="xs:string" use="required">
364 <xs:annotation>
365 <xs:documentation>
366 Name of the event message file.
367 Note that this is a formatted field, so you can use [#fileId] syntax to
368 refer to a file being installed. It is also written as a REG_EXPAND_SZ
369 string, so you can use %environment_variable% syntax to refer to a file
370 already present on the user's machine.
371 </xs:documentation>
372 </xs:annotation>
373 </xs:attribute>
374 <xs:attribute name="KeyPath" type="wxs:YesNoTypeUnion">
375 <xs:annotation>
376 <xs:documentation>
377 Marks the EventSource registry as the key path of the component it belongs to.
378 </xs:documentation>
379 </xs:annotation>
380 </xs:attribute>
381 <xs:attribute name="Log" type="xs:string" use="required">
382 <xs:annotation>
383 <xs:documentation>Name of the event source's log. The "Security" log is not support.</xs:documentation>
384 </xs:annotation>
385 </xs:attribute>
386 <xs:attribute name="Name" type="xs:string" use="required">
387 <xs:annotation>
388 <xs:documentation>Name of the event source.</xs:documentation>
389 </xs:annotation>
390 </xs:attribute>
391 <xs:attribute name="ParameterMessageFile" type="xs:string">
392 <xs:annotation>
393 <xs:documentation>
394 Name of the parameter message file.
395 Note that this is a formatted field, so you can use [#fileId] syntax to
396 refer to a file being installed. It is also written as a REG_EXPAND_SZ
397 string, so you can use %environment_variable% syntax to refer to a file
398 already present on the user's machine.
399 </xs:documentation>
400 </xs:annotation>
401 </xs:attribute>
402 <xs:attribute name="SupportsErrors" type="wxs:YesNoTypeUnion">
403 <xs:annotation>
404 <xs:documentation>
405 Equivalent to EVENTLOG_ERROR_TYPE.
406 </xs:documentation>
407 </xs:annotation>
408 </xs:attribute>
409 <xs:attribute name="SupportsFailureAudits" type="wxs:YesNoTypeUnion">
410 <xs:annotation>
411 <xs:documentation>
412 Equivalent to EVENTLOG_AUDIT_FAILURE.
413 </xs:documentation>
414 </xs:annotation>
415 </xs:attribute>
416 <xs:attribute name="SupportsInformationals" type="wxs:YesNoTypeUnion">
417 <xs:annotation>
418 <xs:documentation>
419 Equivalent to EVENTLOG_INFORMATION_TYPE.
420 </xs:documentation>
421 </xs:annotation>
422 </xs:attribute>
423 <xs:attribute name="SupportsSuccessAudits" type="wxs:YesNoTypeUnion">
424 <xs:annotation>
425 <xs:documentation>
426 Equivalent to EVENTLOG_AUDIT_SUCCESS.
427 </xs:documentation>
428 </xs:annotation>
429 </xs:attribute>
430 <xs:attribute name="SupportsWarnings" type="wxs:YesNoTypeUnion">
431 <xs:annotation>
432 <xs:documentation>
433 Equivalent to EVENTLOG_WARNING_TYPE.
434 </xs:documentation>
435 </xs:annotation>
436 </xs:attribute>
437 <xs:anyAttribute namespace="##other" processContents="lax">
438 <xs:annotation>
439 <xs:documentation>
440 Extensibility point in the WiX XML Schema. Schema extensions can register additional
441 attributes at this point in the schema.
442 </xs:documentation>
443 </xs:annotation>
444 </xs:anyAttribute>
445 </xs:complexType>
446 </xs:element>
447
448 <xs:element name="FileSearch">
449 <xs:annotation>
450 <xs:documentation>Describes a file search.</xs:documentation>
451 <xs:appinfo>
452 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
453 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
454 </xs:appinfo>
455 </xs:annotation>
456 <xs:complexType>
457 <xs:choice minOccurs="0" maxOccurs="unbounded">
458 <xs:any namespace="##other" processContents="lax">
459 <xs:annotation>
460 <xs:documentation>
461 Extensibility point in the WiX XML Schema. Schema extensions can register additional
462 elements at this point in the schema.
463 </xs:documentation>
464 </xs:annotation>
465 </xs:any>
466 </xs:choice>
467 <xs:attributeGroup ref="SearchCommonAttributes" />
468 <xs:attribute name="Path" type="xs:string">
469 <xs:annotation>
470 <xs:documentation>File path to search for.</xs:documentation>
471 </xs:annotation>
472 </xs:attribute>
473 <xs:attribute name="DisableFileRedirection" type="wxs:YesNoTypeUnion">
474 <xs:annotation>
475 <xs:documentation>When set to "yes" and the running bundle is 32-bit, Wow64DisableWow64FsRedirection is called before starting the search.</xs:documentation>
476 </xs:annotation>
477 </xs:attribute>
478 <xs:attribute name="Result">
479 <xs:annotation>
480 <xs:documentation>
481 Rather than saving the matching file path into the variable, a FileSearch can save an attribute of the matching file instead.
482 </xs:documentation>
483 </xs:annotation>
484 <xs:simpleType>
485 <xs:restriction base="xs:NMTOKEN">
486 <xs:enumeration value="exists">
487 <xs:annotation>
488 <xs:documentation>Saves true if a matching file is found; false otherwise.</xs:documentation>
489 </xs:annotation>
490 </xs:enumeration>
491 <xs:enumeration value="version">
492 <xs:annotation>
493 <xs:documentation>Saves the version information for files that have it (.exe, .dll); zero-version (0.0.0.0) otherwise.</xs:documentation>
494 </xs:annotation>
495 </xs:enumeration>
496 </xs:restriction>
497 </xs:simpleType>
498 </xs:attribute>
499 <xs:anyAttribute namespace="##other" processContents="lax">
500 <xs:annotation>
501 <xs:documentation>
502 Extensibility point in the WiX XML Schema. Schema extensions can register additional
503 attributes at this point in the schema.
504 </xs:documentation>
505 </xs:annotation>
506 </xs:anyAttribute>
507 </xs:complexType>
508 </xs:element>
509
510 <xs:element name="FileSearchRef">
511 <xs:annotation>
512 <xs:documentation>References a FileSearch.</xs:documentation>
513 <xs:appinfo>
514 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
515 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
516 </xs:appinfo>
517 </xs:annotation>
518 <xs:complexType>
519 <xs:choice minOccurs="0" maxOccurs="unbounded">
520 <xs:any namespace="##other" processContents="lax">
521 <xs:annotation>
522 <xs:documentation>
523 Extensibility point in the WiX XML Schema. Schema extensions can register additional
524 elements at this point in the schema.
525 </xs:documentation>
526 </xs:annotation>
527 </xs:any>
528 </xs:choice>
529 <xs:attribute name="Id" type="xs:string" use="required" />
530 <xs:anyAttribute namespace="##other" processContents="lax">
531 <xs:annotation>
532 <xs:documentation>
533 Extensibility point in the WiX XML Schema. Schema extensions can register additional
534 attributes at this point in the schema.
535 </xs:documentation>
536 </xs:annotation>
537 </xs:anyAttribute>
538 </xs:complexType>
539 </xs:element>
540
541 <xs:element name="FileShare">
542 <xs:annotation>
543 <xs:appinfo>
544 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
545 </xs:appinfo>
546 <xs:documentation>Creates a file share out of the component's directory.</xs:documentation>
547 </xs:annotation>
548 <xs:complexType>
549 <xs:choice minOccurs="0" maxOccurs="unbounded">
550 <xs:element ref="FileSharePermission">
551 <xs:annotation>
552 <xs:documentation>At least one of these ACL permission must be specified.</xs:documentation>
553 </xs:annotation>
554 </xs:element>
555 <xs:any namespace="##other" processContents="lax">
556 <xs:annotation>
557 <xs:documentation>
558 Extensibility point in the WiX XML Schema. Schema extensions can register additional
559 elements at this point in the schema.
560 </xs:documentation>
561 </xs:annotation>
562 </xs:any>
563 </xs:choice>
564 <xs:attribute name="Id" type="xs:string">
565 <xs:annotation>
566 <xs:documentation>Identifier for the file share (primary key).</xs:documentation>
567 </xs:annotation>
568 </xs:attribute>
569 <xs:attribute name="Name" type="xs:string" use="required">
570 <xs:annotation>
571 <xs:documentation>Name of the file share.</xs:documentation>
572 </xs:annotation>
573 </xs:attribute>
574 <xs:attribute name="Description" type="xs:string">
575 <xs:annotation>
576 <xs:documentation>Description of the file share.</xs:documentation>
577 </xs:annotation>
578 </xs:attribute>
579 <xs:anyAttribute namespace="##other" processContents="lax">
580 <xs:annotation>
581 <xs:documentation>
582 Extensibility point in the WiX XML Schema. Schema extensions can register additional
583 attributes at this point in the schema.
584 </xs:documentation>
585 </xs:annotation>
586 </xs:anyAttribute>
587 </xs:complexType>
588 </xs:element>
589
590 <xs:element name="FileSharePermission">
591 <xs:annotation>
592 <xs:documentation>
593 Sets ACLs on a FileShare. This element has no Id attribute.
594 The table and key are taken from the parent element.
595 </xs:documentation>
596 </xs:annotation>
597 <xs:complexType>
598 <xs:choice minOccurs="0" maxOccurs="unbounded">
599 <xs:any namespace="##other" processContents="lax">
600 <xs:annotation>
601 <xs:documentation>
602 Extensibility point in the WiX XML Schema. Schema extensions can register additional
603 elements at this point in the schema.
604 </xs:documentation>
605 </xs:annotation>
606 </xs:any>
607 </xs:choice>
608 <xs:attribute name="User" use="required" type="xs:string"></xs:attribute>
609 <!-- Common ACLs -->
610 <xs:attribute name="Read" type="wxs:YesNoTypeUnion"></xs:attribute>
611 <xs:attribute name="Delete" type="wxs:YesNoTypeUnion"></xs:attribute>
612 <xs:attribute name="ReadPermission" type="wxs:YesNoTypeUnion"></xs:attribute>
613 <xs:attribute name="ChangePermission" type="wxs:YesNoTypeUnion"></xs:attribute>
614 <xs:attribute name="TakeOwnership" type="wxs:YesNoTypeUnion"></xs:attribute>
615 <!-- Folder and File ACLs -->
616 <xs:attribute name="ReadAttributes" type="wxs:YesNoTypeUnion"></xs:attribute>
617 <xs:attribute name="WriteAttributes" type="wxs:YesNoTypeUnion"></xs:attribute>
618 <xs:attribute name="ReadExtendedAttributes" type="wxs:YesNoTypeUnion"></xs:attribute>
619 <xs:attribute name="WriteExtendedAttributes" type="wxs:YesNoTypeUnion"></xs:attribute>
620 <xs:attribute name="Synchronize" type="wxs:YesNoTypeUnion"></xs:attribute>
621 <!-- Folder only ACLs -->
622 <xs:attribute name="CreateFile" type="wxs:YesNoTypeUnion">
623 <xs:annotation>
624 <xs:documentation>For a directory, the right to create a file in the directory. Only valid under a 'CreateFolder' parent.</xs:documentation>
625 </xs:annotation>
626 </xs:attribute>
627 <xs:attribute name="CreateChild" type="wxs:YesNoTypeUnion">
628 <xs:annotation>
629 <xs:documentation>For a directory, the right to create a subdirectory. Only valid under a 'CreateFolder' parent.</xs:documentation>
630 </xs:annotation>
631 </xs:attribute>
632 <xs:attribute name="DeleteChild" type="wxs:YesNoTypeUnion">
633 <xs:annotation>
634 <xs:documentation>For a directory, the right to delete a directory and all the files it contains, including read-only files. Only valid under a 'CreateFolder' parent.</xs:documentation>
635 </xs:annotation>
636 </xs:attribute>
637 <xs:attribute name="Traverse" type="wxs:YesNoTypeUnion">
638 <xs:annotation>
639 <xs:documentation>For a directory, the right to traverse the directory. By default, users are assigned the BYPASS_TRAVERSE_CHECKING privilege, which ignores the FILE_TRAVERSE access right. Only valid under a 'CreateFolder' parent.</xs:documentation>
640 </xs:annotation>
641 </xs:attribute>
642 <!-- Generic ACLs, mapped by system to appropriate permissions -->
643 <xs:attribute name="GenericAll" type="wxs:YesNoTypeUnion"></xs:attribute>
644 <xs:attribute name="GenericExecute" type="wxs:YesNoTypeUnion"></xs:attribute>
645 <xs:attribute name="GenericWrite" type="wxs:YesNoTypeUnion"></xs:attribute>
646 <xs:attribute name="GenericRead" type="wxs:YesNoTypeUnion">
647 <xs:annotation>
648 <xs:documentation>specifying this will fail to grant read access</xs:documentation>
649 </xs:annotation>
650 </xs:attribute>
651 <xs:anyAttribute namespace="##other" processContents="lax">
652 <xs:annotation>
653 <xs:documentation>
654 Extensibility point in the WiX XML Schema. Schema extensions can register additional
655 attributes at this point in the schema.
656 </xs:documentation>
657 </xs:annotation>
658 </xs:anyAttribute>
659 </xs:complexType>
660 </xs:element>
661
662 <xs:element name="FormatFile">
663 <xs:annotation>
664 <xs:appinfo>
665 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="File" />
666 </xs:appinfo>
667 <xs:documentation>
668 Formats a file's contents at install time. The contents are formatted according to the rules of the
669 [Formatted](https://learn.microsoft.com/en-us/windows/win32/msi/formatted) data type.
670 </xs:documentation>
671 </xs:annotation>
672 <xs:complexType>
673 <xs:choice minOccurs="0" maxOccurs="unbounded">
674 <xs:any namespace="##other" processContents="lax">
675 <xs:annotation>
676 <xs:documentation>
677 Extensibility point in the WiX XML Schema. Schema extensions can register additional
678 elements at this point in the schema.
679 </xs:documentation>
680 </xs:annotation>
681 </xs:any>
682 </xs:choice>
683 <xs:attribute name="BinaryRef" type="xs:string" use="required">
684 <xs:annotation>
685 <xs:documentation>
686 The id of a Binary row that contains a copy of the file. The file in the Binary table overwrites whatever
687 file is installed by the parent component.
688 </xs:documentation>
689 </xs:annotation>
690 </xs:attribute>
691 <xs:anyAttribute namespace="##other" processContents="lax">
692 <xs:annotation>
693 <xs:documentation>
694 Extensibility point in the WiX XML Schema. Schema extensions can register additional
695 attributes at this point in the schema.
696 </xs:documentation>
697 </xs:annotation>
698 </xs:anyAttribute>
699 </xs:complexType>
700 </xs:element>
701
702 <xs:element name="Group">
703 <xs:annotation>
704 <xs:appinfo>
705 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
706 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
707 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
708 </xs:appinfo>
709 <xs:documentation>
710 Finds user groups on the local machine or specified Active Directory domain. The local machine will be
711 searched for the group first then fallback to looking in Active Directory. This element is not capable
712 of creating new groups but can be used to add new or existing users to an existing group.
713 </xs:documentation>
714 </xs:annotation>
715 <xs:complexType>
716 <xs:choice minOccurs="0" maxOccurs="unbounded">
717 <xs:any namespace="##other" processContents="lax">
718 <xs:annotation>
719 <xs:documentation>
720 Extensibility point in the WiX XML Schema. Schema extensions can register additional
721 elements at this point in the schema.
722 </xs:documentation>
723 </xs:annotation>
724 </xs:any>
725 </xs:choice>
726 <xs:attribute name="Id" type="xs:string">
727 <xs:annotation>
728 <xs:documentation>Unique identifier in your installation package for this group.</xs:documentation>
729 </xs:annotation>
730 </xs:attribute>
731 <xs:attribute name="Name" type="xs:string" use="required">
732 <xs:annotation>
733 <xs:documentation>A [Formatted](https://learn.microsoft.com/en-us/windows/win32/msi/formatted) string that contains the name of the group to be found.</xs:documentation>
734 </xs:annotation>
735 </xs:attribute>
736 <xs:attribute name="Domain" type="xs:string">
737 <xs:annotation>
738 <xs:documentation>An optional [Formatted](https://learn.microsoft.com/en-us/windows/win32/msi/formatted) string that specifies the domain for the group.</xs:documentation>
739 </xs:annotation>
740 </xs:attribute>
741 <xs:anyAttribute namespace="##other" processContents="lax">
742 <xs:annotation>
743 <xs:documentation>
744 Extensibility point in the WiX XML Schema. Schema extensions can register additional
745 attributes at this point in the schema.
746 </xs:documentation>
747 </xs:annotation>
748 </xs:anyAttribute>
749 </xs:complexType>
750 </xs:element>
751
752 <xs:element name="GroupRef">
753 <xs:annotation>
754 <xs:documentation>Used to join a user to a group</xs:documentation>
755 </xs:annotation>
756 <xs:complexType>
757 <xs:choice minOccurs="0" maxOccurs="unbounded">
758 <xs:any namespace="##other" processContents="lax">
759 <xs:annotation>
760 <xs:documentation>
761 Extensibility point in the WiX XML Schema. Schema extensions can register additional
762 elements at this point in the schema.
763 </xs:documentation>
764 </xs:annotation>
765 </xs:any>
766 </xs:choice>
767 <xs:attribute name="Id" type="xs:string" use="required" />
768 <xs:anyAttribute namespace="##other" processContents="lax">
769 <xs:annotation>
770 <xs:documentation>
771 Extensibility point in the WiX XML Schema. Schema extensions can register additional
772 attributes at this point in the schema.
773 </xs:documentation>
774 </xs:annotation>
775 </xs:anyAttribute>
776 </xs:complexType>
777 </xs:element>
778
779 <xs:element name="InternetShortcut">
780 <xs:annotation>
781 <xs:appinfo>
782 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
783 <xse:howtoRef href="files_and_registry/create_internet_shortcut.html">How To: Create a shortcut to a webpage</xse:howtoRef>
784 </xs:appinfo>
785 <xs:documentation>Creates a shortcut to a URL.</xs:documentation>
786 </xs:annotation>
787 <xs:complexType>
788 <xs:choice minOccurs="0" maxOccurs="unbounded">
789 <xs:any namespace="##other" processContents="lax">
790 <xs:annotation>
791 <xs:documentation>
792 Extensibility point in the WiX XML Schema. Schema extensions can register additional
793 elements at this point in the schema.
794 </xs:documentation>
795 </xs:annotation>
796 </xs:any>
797 </xs:choice>
798 <xs:attribute name="Id" type="xs:string">
799 <xs:annotation>
800 <xs:documentation>Unique identifier in your installation package for this Internet shortcut.</xs:documentation>
801 </xs:annotation>
802 </xs:attribute>
803 <xs:attribute name="Directory" type="xs:string">
804 <xs:annotation>
805 <xs:documentation>Identifier reference to Directory element where shortcut is to be created. This attribute's value defaults to the parent Component directory.</xs:documentation>
806 </xs:annotation>
807 </xs:attribute>
808 <xs:attribute name="Name" type="xs:string" use="required">
809 <xs:annotation>
810 <xs:documentation>
811 The name of the shortcut file, which is visible to the user. (The .lnk
812 extension is added automatically and by default, is not shown to the user.)
813 </xs:documentation>
814 </xs:annotation>
815 </xs:attribute>
816 <xs:attribute name="Target" type="xs:string" use="required">
817 <xs:annotation>
818 <xs:documentation>
819 URL that should be opened when the user selects the shortcut. Windows
820 opens the URL in the appropriate handler for the protocol specified
821 in the URL. Note that this is a formatted field, so you can use
822 [#fileId] syntax to refer to a file being installed (using the file:
823 protocol).
824 </xs:documentation>
825 </xs:annotation>
826 </xs:attribute>
827 <xs:attribute name="Type">
828 <xs:annotation>
829 <xs:documentation>Which type of shortcut should be created.</xs:documentation>
830 </xs:annotation>
831 <xs:simpleType>
832 <xs:restriction base="xs:NMTOKEN">
833 <xs:enumeration value="url">
834 <xs:annotation>
835 <xs:documentation>Creates .url files using IUniformResourceLocatorW.</xs:documentation>
836 </xs:annotation>
837 </xs:enumeration>
838 <xs:enumeration value="link">
839 <xs:annotation>
840 <xs:documentation>Creates .lnk files using IShellLinkW (default).</xs:documentation>
841 </xs:annotation>
842 </xs:enumeration>
843 </xs:restriction>
844 </xs:simpleType>
845 </xs:attribute>
846 <xs:attribute name="IconFile" type="xs:string">
847 <xs:annotation>
848 <xs:documentation>
849 Icon file that should be displayed. Note that this is a formatted field, so you can use
850 [#fileId] syntax to refer to a file being installed (using the file:
851 protocol).
852 </xs:documentation>
853 </xs:annotation>
854 </xs:attribute>
855 <xs:attribute name="IconIndex" type="wxs:Integer">
856 <xs:annotation>
857 <xs:documentation>
858 Index of the icon being referenced.
859 </xs:documentation>
860 </xs:annotation>
861 </xs:attribute>
862 <xs:anyAttribute namespace="##other" processContents="lax">
863 <xs:annotation>
864 <xs:documentation>
865 Extensibility point in the WiX XML Schema. Schema extensions can register additional
866 attributes at this point in the schema.
867 </xs:documentation>
868 </xs:annotation>
869 </xs:anyAttribute>
870 </xs:complexType>
871 </xs:element>
872
873 <xs:element name="PerformanceCategory">
874 <xs:annotation>
875 <xs:appinfo>
876 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
877 </xs:appinfo>
878 <xs:documentation>Used to create performance categories and configure performance counters.</xs:documentation>
879 </xs:annotation>
880 <xs:complexType>
881 <xs:choice minOccurs="0" maxOccurs="unbounded">
882 <xs:element ref="PerformanceCounter" />
883 <xs:any namespace="##other" processContents="lax">
884 <xs:annotation>
885 <xs:documentation>
886 Extensibility point in the WiX XML Schema. Schema extensions can register additional
887 elements at this point in the schema.
888 </xs:documentation>
889 </xs:annotation>
890 </xs:any>
891 </xs:choice>
892 <xs:attribute name="Id" type="xs:string">
893 <xs:annotation>
894 <xs:documentation>Unique identifier in your installation package for this performance counter category.</xs:documentation>
895 </xs:annotation>
896 </xs:attribute>
897 <xs:attribute name="Name" type="xs:string">
898 <xs:annotation>
899 <xs:documentation>Name for the performance counter category. If this attribute is not provided the Id attribute is used as the name of the performance counter category.</xs:documentation>
900 </xs:annotation>
901 </xs:attribute>
902 <xs:attribute name="Help" type="xs:string">
903 <xs:annotation>
904 <xs:documentation>Optional help text for the performance counter category.</xs:documentation>
905 </xs:annotation>
906 </xs:attribute>
907 <xs:attribute name="MultiInstance" type="wxs:YesNoTypeUnion">
908 <xs:annotation>
909 <xs:documentation>Flag that specifies whether the performance counter category is multi or single instanced. Default is single instance.</xs:documentation>
910 </xs:annotation>
911 </xs:attribute>
912 <xs:attribute name="Library" type="xs:string">
913 <xs:annotation>
914 <xs:documentation>DLL that contains the performance counter. The default is "netfxperf.dll" which should be used for all managed code performance counters.</xs:documentation>
915 </xs:annotation>
916 </xs:attribute>
917 <xs:attribute name="Open" type="xs:string">
918 <xs:annotation>
919 <xs:documentation>Function entry point in to the Library DLL called when opening the performance counter. The default is "OpenPerformanceData" which should be used for all managed code performance counters.</xs:documentation>
920 </xs:annotation>
921 </xs:attribute>
922 <xs:attribute name="Close" type="xs:string">
923 <xs:annotation>
924 <xs:documentation>Function entry point in to the Library DLL called when closing the performance counter. The default is "ClosePerformanceData" which should be used for all managed code performance counters.</xs:documentation>
925 </xs:annotation>
926 </xs:attribute>
927 <xs:attribute name="Collect" type="xs:string">
928 <xs:annotation>
929 <xs:documentation>Function entry point in to the Library DLL called when collecting data from the performance counter. The default is "CollectPerformanceData" which should be used for all managed code performance counters.</xs:documentation>
930 </xs:annotation>
931 </xs:attribute>
932 <xs:attribute name="DefaultLanguage" type="PerformanceCounterLanguageType">
933 <xs:annotation>
934 <xs:documentation>Default language for the performance category and contained counters' names and help text.</xs:documentation>
935 </xs:annotation>
936 </xs:attribute>
937 <xs:anyAttribute namespace="##other" processContents="lax">
938 <xs:annotation>
939 <xs:documentation>
940 Extensibility point in the WiX XML Schema. Schema extensions can register additional
941 attributes at this point in the schema.
942 </xs:documentation>
943 </xs:annotation>
944 </xs:anyAttribute>
945 </xs:complexType>
946 </xs:element>
947
948 <xs:element name="PerformanceCounter">
949 <xs:annotation>
950 <xs:documentation>Creates a performance counter in a performance category.</xs:documentation>
951 </xs:annotation>
952 <xs:complexType>
953 <xs:choice minOccurs="0" maxOccurs="unbounded">
954 <xs:any namespace="##other" processContents="lax">
955 <xs:annotation>
956 <xs:documentation>
957 Extensibility point in the WiX XML Schema. Schema extensions can register additional
958 elements at this point in the schema.
959 </xs:documentation>
960 </xs:annotation>
961 </xs:any>
962 </xs:choice>
963 <xs:attribute name="Name" type="xs:string">
964 <xs:annotation>
965 <xs:documentation>Name for the performance counter.</xs:documentation>
966 </xs:annotation>
967 </xs:attribute>
968 <xs:attribute name="Help" type="xs:string">
969 <xs:annotation>
970 <xs:documentation>Optional help text for the performance counter.</xs:documentation>
971 </xs:annotation>
972 </xs:attribute>
973 <xs:attribute name="Type" type="PerformanceCounterTypesType">
974 <xs:annotation>
975 <xs:documentation>Type of the performance counter.</xs:documentation>
976 </xs:annotation>
977 </xs:attribute>
978 <xs:attribute name="Language" type="PerformanceCounterLanguageType">
979 <xs:annotation>
980 <xs:documentation>Language for the peformance counter name and help. The default is to use the parent PerformanceCategory element's DefaultLanguage attribute.</xs:documentation>
981 </xs:annotation>
982 </xs:attribute>
983 <xs:anyAttribute namespace="##other" processContents="lax">
984 <xs:annotation>
985 <xs:documentation>
986 Extensibility point in the WiX XML Schema. Schema extensions can register additional
987 attributes at this point in the schema.
988 </xs:documentation>
989 </xs:annotation>
990 </xs:anyAttribute>
991 </xs:complexType>
992 </xs:element>
993
994 <xs:element name="PerfCounter">
995 <xs:annotation>
996 <xs:appinfo>
997 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="File" />
998 <xse:deprecated ref="PerformanceCounter" />
999 </xs:appinfo>
1000 <xs:documentation>Used to install Perfmon counters.</xs:documentation>
1001 </xs:annotation>
1002 <xs:complexType>
1003 <xs:choice minOccurs="0" maxOccurs="unbounded">
1004 <xs:any namespace="##other" processContents="lax">
1005 <xs:annotation>
1006 <xs:documentation>
1007 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1008 elements at this point in the schema.
1009 </xs:documentation>
1010 </xs:annotation>
1011 </xs:any>
1012 </xs:choice>
1013 <xs:attribute name="Name" type="xs:string" />
1014 <xs:anyAttribute namespace="##other" processContents="lax">
1015 <xs:annotation>
1016 <xs:documentation>
1017 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1018 attributes at this point in the schema.
1019 </xs:documentation>
1020 </xs:annotation>
1021 </xs:anyAttribute>
1022 </xs:complexType>
1023 </xs:element>
1024
1025 <xs:element name="PerfCounterManifest">
1026 <xs:annotation>
1027 <xs:appinfo>
1028 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="File" />
1029 </xs:appinfo>
1030 <xs:documentation>
1031 Used to install Perfmon Counter Manifests.
1032 Note that this functionality cannot be used with major upgrades that are scheduled after the InstallExecute,
1033 InstallExecuteAgain, or InstallFinalize actions. For more information on major upgrade scheduling, see
1034 [RemoveExistingProducts Action](https://learn.microsoft.com/en-us/windows/win32/msi/removeexistingproducts-action).
1035 </xs:documentation>
1036 </xs:annotation>
1037 <xs:complexType>
1038 <xs:choice minOccurs="0" maxOccurs="unbounded">
1039 <xs:any namespace="##other" processContents="lax">
1040 <xs:annotation>
1041 <xs:documentation>
1042 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1043 elements at this point in the schema.
1044 </xs:documentation>
1045 </xs:annotation>
1046 </xs:any>
1047 </xs:choice>
1048 <xs:attribute name="ResourceFileDirectory" type="xs:string">
1049 <xs:annotation>
1050 <xs:documentation>The directory that holds the resource file of the providers in the perfmon counter manifest. Often the resource file path cannot be determined until setup time. Put the directory here and during perfmon manifest registrtion the path will be updated in the registry. If not specified, Perfmon will look for the resource file in the same directory of the perfmon counter manifest file.</xs:documentation>
1051 </xs:annotation>
1052 </xs:attribute>
1053 <xs:anyAttribute namespace="##other" processContents="lax">
1054 <xs:annotation>
1055 <xs:documentation>
1056 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1057 attributes at this point in the schema.
1058 </xs:documentation>
1059 </xs:annotation>
1060 </xs:anyAttribute>
1061 </xs:complexType>
1062 </xs:element>
1063
1064 <xs:element name="EventManifest">
1065 <xs:annotation>
1066 <xs:appinfo>
1067 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="File" />
1068 </xs:appinfo>
1069 <xs:documentation>Used to install Event Manifests.</xs:documentation>
1070 </xs:annotation>
1071 <xs:complexType>
1072 <xs:choice minOccurs="0" maxOccurs="unbounded">
1073 <xs:any namespace="##other" processContents="lax">
1074 <xs:annotation>
1075 <xs:documentation>
1076 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1077 elements at this point in the schema.
1078 </xs:documentation>
1079 </xs:annotation>
1080 </xs:any>
1081 </xs:choice>
1082 <xs:attribute name="MessageFile" type="xs:string">
1083 <xs:annotation>
1084 <xs:documentation>The message file (including path) of all the providers in the event manifest. Often the message file path cannot be determined until setup time. Put your MessageFile here and the messageFileName attribute of the all the providers in the manifest will be updated with the path before it is registered. </xs:documentation>
1085 </xs:annotation>
1086 </xs:attribute>
1087 <xs:attribute name="ParameterFile" type="xs:string">
1088 <xs:annotation>
1089 <xs:documentation>The parameter file (including path) of all the providers in the event manifest. Often the parameter file path cannot be determined until setup time. Put your ParameterFile here and the parameterFileName attribute of the all the providers in the manifest will be updated with the path before it is registered. </xs:documentation>
1090 </xs:annotation>
1091 </xs:attribute>
1092 <xs:attribute name="ResourceFile" type="xs:string">
1093 <xs:annotation>
1094 <xs:documentation>The resource file (including path) of all the providers in the event manifest. Often the resource file path cannot be determined until setup time. Put your ResourceFile here and the resourceFileName attribute of the all the providers in the manifest will be updated with the path before it is registered. </xs:documentation>
1095 </xs:annotation>
1096 </xs:attribute>
1097 <xs:anyAttribute namespace="##other" processContents="lax">
1098 <xs:annotation>
1099 <xs:documentation>
1100 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1101 attributes at this point in the schema.
1102 </xs:documentation>
1103 </xs:annotation>
1104 </xs:anyAttribute>
1105 </xs:complexType>
1106 </xs:element>
1107
1108 <xs:element name="PermissionEx">
1109 <xs:annotation>
1110 <xs:documentation>
1111 Sets ACLs on File, Registry, CreateFolder, or ServiceInstall. When under a Registry element, this cannot be used
1112 if the Action attribute's value is remove or removeKeyOnInstall. This element has no Id attribute.
1113 The table and key are taken from the parent element.
1114 </xs:documentation>
1115 <xs:appinfo>
1116 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="CreateFolder" />
1117 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="File" />
1118 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="RegistryKey" />
1119 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="RegistryValue" />
1120 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="ServiceInstall" />
1121 </xs:appinfo>
1122 </xs:annotation>
1123 <xs:complexType>
1124 <xs:choice minOccurs="0" maxOccurs="unbounded">
1125 <xs:any namespace="##other" processContents="lax">
1126 <xs:annotation>
1127 <xs:documentation>
1128 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1129 elements at this point in the schema.
1130 </xs:documentation>
1131 </xs:annotation>
1132 </xs:any>
1133 </xs:choice>
1134 <xs:attribute name="User" type="xs:string" use="required"></xs:attribute>
1135 <xs:attribute name="Domain" type="xs:string"></xs:attribute>
1136 <xs:attribute name="Inheritable" type="wxs:YesNoTypeUnion">
1137 <xs:annotation>
1138 <xs:documentation>Whether the permissions are inheritable. The default is "yes".</xs:documentation>
1139 </xs:annotation>
1140 </xs:attribute>
1141 <!-- Common ACLs -->
1142 <xs:attribute name="Read" type="wxs:YesNoTypeUnion"></xs:attribute>
1143 <xs:attribute name="Delete" type="wxs:YesNoTypeUnion"></xs:attribute>
1144 <xs:attribute name="ReadPermission" type="wxs:YesNoTypeUnion"></xs:attribute>
1145 <xs:attribute name="ChangePermission" type="wxs:YesNoTypeUnion"></xs:attribute>
1146 <xs:attribute name="TakeOwnership" type="wxs:YesNoTypeUnion"></xs:attribute>
1147 <!-- Folder and File ACLs -->
1148 <xs:attribute name="ReadAttributes" type="wxs:YesNoTypeUnion"></xs:attribute>
1149 <xs:attribute name="WriteAttributes" type="wxs:YesNoTypeUnion"></xs:attribute>
1150 <xs:attribute name="ReadExtendedAttributes" type="wxs:YesNoTypeUnion"></xs:attribute>
1151 <xs:attribute name="WriteExtendedAttributes" type="wxs:YesNoTypeUnion"></xs:attribute>
1152 <xs:attribute name="Synchronize" type="wxs:YesNoTypeUnion"></xs:attribute>
1153 <!-- Folder only ACLs -->
1154 <xs:attribute name="CreateFile" type="wxs:YesNoTypeUnion">
1155 <xs:annotation>
1156 <xs:documentation>For a directory, the right to create a file in the directory. Only valid under a 'CreateFolder' parent.</xs:documentation>
1157 </xs:annotation>
1158 </xs:attribute>
1159 <xs:attribute name="CreateChild" type="wxs:YesNoTypeUnion">
1160 <xs:annotation>
1161 <xs:documentation>For a directory, the right to create a subdirectory. Only valid under a 'CreateFolder' parent.</xs:documentation>
1162 </xs:annotation>
1163 </xs:attribute>
1164 <xs:attribute name="DeleteChild" type="wxs:YesNoTypeUnion">
1165 <xs:annotation>
1166 <xs:documentation>For a directory, the right to delete a directory and all the files it contains, including read-only files. Only valid under a 'CreateFolder' parent.</xs:documentation>
1167 </xs:annotation>
1168 </xs:attribute>
1169 <xs:attribute name="Traverse" type="wxs:YesNoTypeUnion">
1170 <xs:annotation>
1171 <xs:documentation>For a directory, the right to traverse the directory. By default, users are assigned the BYPASS_TRAVERSE_CHECKING privilege, which ignores the FILE_TRAVERSE access right. Only valid under a 'CreateFolder' parent.</xs:documentation>
1172 </xs:annotation>
1173 </xs:attribute>
1174 <!-- File only ACLs -->
1175 <xs:attribute name="Append" type="wxs:YesNoTypeUnion"></xs:attribute>
1176 <xs:attribute name="Execute" type="wxs:YesNoTypeUnion"></xs:attribute>
1177 <!-- File and Registry ACLs -->
1178 <xs:attribute name="Write" type="wxs:YesNoTypeUnion"></xs:attribute>
1179 <!-- Registry only ACLs -->
1180 <xs:attribute name="CreateSubkeys" type="wxs:YesNoTypeUnion"></xs:attribute>
1181 <xs:attribute name="EnumerateSubkeys" type="wxs:YesNoTypeUnion"></xs:attribute>
1182 <xs:attribute name="Notify" type="wxs:YesNoTypeUnion"></xs:attribute>
1183 <xs:attribute name="CreateLink" type="wxs:YesNoTypeUnion"></xs:attribute>
1184 <!-- Generic ACLs, mapped by system to appropriate permissions -->
1185 <xs:attribute name="GenericAll" type="wxs:YesNoTypeUnion"></xs:attribute>
1186 <xs:attribute name="GenericExecute" type="wxs:YesNoTypeUnion"></xs:attribute>
1187 <xs:attribute name="GenericWrite" type="wxs:YesNoTypeUnion"></xs:attribute>
1188 <xs:attribute name="GenericRead" type="wxs:YesNoTypeUnion">
1189 <xs:annotation>
1190 <xs:documentation>specifying this will fail to grant read access</xs:documentation>
1191 </xs:annotation>
1192 </xs:attribute>
1193 <!-- Service only ACLs -->
1194 <xs:attribute name="ServiceQueryConfig" type="wxs:YesNoTypeUnion">
1195 <xs:annotation>
1196 <xs:documentation>Required to call the QueryServiceConfig and QueryServiceConfig2 functions to query the service configuration. Only valid under a 'ServiceInstall' parent.</xs:documentation>
1197 </xs:annotation>
1198 </xs:attribute>
1199 <xs:attribute name="ServiceChangeConfig" type="wxs:YesNoTypeUnion">
1200 <xs:annotation>
1201 <xs:documentation>Required to call the ChangeServiceConfig or ChangeServiceConfig2 function to change the service configuration. Only valid under a 'ServiceInstall' parent.</xs:documentation>
1202 </xs:annotation>
1203 </xs:attribute>
1204 <xs:attribute name="ServiceQueryStatus" type="wxs:YesNoTypeUnion">
1205 <xs:annotation>
1206 <xs:documentation>Required to call the QueryServiceStatus function to ask the service control manager about the status of the service. Only valid under a 'ServiceInstall' parent.</xs:documentation>
1207 </xs:annotation>
1208 </xs:attribute>
1209 <xs:attribute name="ServiceEnumerateDependents" type="wxs:YesNoTypeUnion">
1210 <xs:annotation>
1211 <xs:documentation>Required to call the EnumDependentServices function to enumerate all the services dependent on the service. Only valid under a 'ServiceInstall' parent.</xs:documentation>
1212 </xs:annotation>
1213 </xs:attribute>
1214 <xs:attribute name="ServiceStart" type="wxs:YesNoTypeUnion">
1215 <xs:annotation>
1216 <xs:documentation>Required to call the StartService function to start the service. Only valid under a 'ServiceInstall' parent.</xs:documentation>
1217 </xs:annotation>
1218 </xs:attribute>
1219 <xs:attribute name="ServiceStop" type="wxs:YesNoTypeUnion">
1220 <xs:annotation>
1221 <xs:documentation>Required to call the ControlService function to stop the service. Only valid under a 'ServiceInstall' parent.</xs:documentation>
1222 </xs:annotation>
1223 </xs:attribute>
1224 <xs:attribute name="ServicePauseContinue" type="wxs:YesNoTypeUnion">
1225 <xs:annotation>
1226 <xs:documentation>Required to call the ControlService function to pause or continue the service. Only valid under a 'ServiceInstall' parent.</xs:documentation>
1227 </xs:annotation>
1228 </xs:attribute>
1229 <xs:attribute name="ServiceInterrogate" type="wxs:YesNoTypeUnion">
1230 <xs:annotation>
1231 <xs:documentation>Required to call the ControlService function to ask the service to report its status immediately. Only valid under a 'ServiceInstall' parent.</xs:documentation>
1232 </xs:annotation>
1233 </xs:attribute>
1234 <xs:attribute name="ServiceUserDefinedControl" type="wxs:YesNoTypeUnion">
1235 <xs:annotation>
1236 <xs:documentation>Required to call the ControlService function to specify a user-defined control code. Only valid under a 'ServiceInstall' parent.</xs:documentation>
1237 </xs:annotation>
1238 </xs:attribute>
1239 <xs:anyAttribute namespace="##other" processContents="lax">
1240 <xs:annotation>
1241 <xs:documentation>
1242 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1243 attributes at this point in the schema.
1244 </xs:documentation>
1245 </xs:annotation>
1246 </xs:anyAttribute>
1247 </xs:complexType>
1248 </xs:element>
1249
1250 <xs:element name="ProductSearch">
1251 <xs:annotation>
1252 <xs:documentation>Describes a product search.</xs:documentation>
1253 <xs:appinfo>
1254 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
1255 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
1256 </xs:appinfo>
1257 </xs:annotation>
1258 <xs:complexType>
1259 <xs:choice minOccurs="0" maxOccurs="unbounded">
1260 <xs:any namespace="##other" processContents="lax">
1261 <xs:annotation>
1262 <xs:documentation>
1263 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1264 elements at this point in the schema.
1265 </xs:documentation>
1266 </xs:annotation>
1267 </xs:any>
1268 </xs:choice>
1269 <xs:attributeGroup ref="SearchCommonAttributes" />
1270 <xs:attribute name="Guid" type="xs:string">
1271 <xs:annotation>
1272 <xs:documentation>The Guid attribute has been deprecated; use the ProductCode or UpgradeCode attribute instead. If this attribute is used, it is assumed to be a ProductCode.</xs:documentation>
1273 </xs:annotation>
1274 </xs:attribute>
1275 <xs:attribute name="ProductCode" type="xs:string">
1276 <xs:annotation>
1277 <xs:documentation>The ProductCode to use for the search. This attribute must be omitted if UpgradeCode is specified.</xs:documentation>
1278 </xs:annotation>
1279 </xs:attribute>
1280 <xs:attribute name="UpgradeCode" type="xs:string">
1281 <xs:annotation>
1282 <xs:documentation>The UpgradeCode to use for the search. This attribute must be omitted if ProductCode is specified. Note that if multiple products are found, the highest versioned product will be used for the result.</xs:documentation>
1283 </xs:annotation>
1284 </xs:attribute>
1285 <xs:attribute name="Result">
1286 <xs:annotation>
1287 <xs:documentation>
1288 Rather than saving the product version into the variable, a ProductSearch can save another attribute of the matching product instead.
1289 </xs:documentation>
1290 </xs:annotation>
1291 <xs:simpleType>
1292 <xs:restriction base="xs:NMTOKEN">
1293 <xs:enumeration value="assignment">
1294 <xs:annotation>
1295 <xs:documentation>Saves the assignment type of the product: per-user (0), or per-machine (1).</xs:documentation>
1296 </xs:annotation>
1297 </xs:enumeration>
1298 <xs:enumeration value="language">
1299 <xs:annotation>
1300 <xs:documentation>Saves the language of a matching product if found; empty otherwise.</xs:documentation>
1301 </xs:annotation>
1302 </xs:enumeration>
1303 <xs:enumeration value="state">
1304 <xs:annotation>
1305 <xs:documentation>Saves the state of the product: advertised (1), absent (2), or locally installed (5).</xs:documentation>
1306 </xs:annotation>
1307 </xs:enumeration>
1308 <xs:enumeration value="version">
1309 <xs:annotation>
1310 <xs:documentation>Saves the version of a matching product if found; 0.0.0.0 otherwise. This is the default.</xs:documentation>
1311 </xs:annotation>
1312 </xs:enumeration>
1313 </xs:restriction>
1314 </xs:simpleType>
1315 </xs:attribute>
1316 <xs:anyAttribute namespace="##other" processContents="lax">
1317 <xs:annotation>
1318 <xs:documentation>
1319 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1320 attributes at this point in the schema.
1321 </xs:documentation>
1322 </xs:annotation>
1323 </xs:anyAttribute>
1324 </xs:complexType>
1325 </xs:element>
1326
1327 <xs:element name="ProductSearchRef">
1328 <xs:annotation>
1329 <xs:documentation>References a ProductSearch.</xs:documentation>
1330 <xs:appinfo>
1331 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
1332 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
1333 </xs:appinfo>
1334 </xs:annotation>
1335 <xs:complexType>
1336 <xs:choice minOccurs="0" maxOccurs="unbounded">
1337 <xs:any namespace="##other" processContents="lax">
1338 <xs:annotation>
1339 <xs:documentation>
1340 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1341 elements at this point in the schema.
1342 </xs:documentation>
1343 </xs:annotation>
1344 </xs:any>
1345 </xs:choice>
1346 <xs:attribute name="Id" type="xs:string" use="required" />
1347 <xs:anyAttribute namespace="##other" processContents="lax">
1348 <xs:annotation>
1349 <xs:documentation>
1350 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1351 attributes at this point in the schema.
1352 </xs:documentation>
1353 </xs:annotation>
1354 </xs:anyAttribute>
1355 </xs:complexType>
1356 </xs:element>
1357
1358 <xs:element name="RemoveFolderEx">
1359 <xs:annotation>
1360 <xs:appinfo>
1361 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
1362 <xse:msiRef table="RemoveFile" href="https://learn.microsoft.com/en-us/windows/win32/msi/removefile-table"/>
1363 <xse:remarks>
1364 <html:p>
1365 The custom action that implements RemoveFolderEx does so by writing temporary rows to the RemoveFile table
1366 for each subfolder of the root folder you specify. Because it might dramatically affect Windows Installer's
1367 [File Costing](https://learn.microsoft.com/en-us/windows/win32/msi/file-costing),
1368 the temporary rows must be written before the CostInitialize standard action. Unfortunately, MSI doesn't
1369 create properties for the Directory hierarchy in your package until later, in the CostFinalize action.
1370 </html:p>
1371 <html:p>
1372 An easy workaround for a typical use case of removing a folder during uninstall is to write the directory
1373 path to the registry and to load it during uninstall. See [The WiX toolset's "Remember Property" pattern](http://robmensching.com/blog/posts/2010/5/2/the-wix-toolsets-remember-property-pattern)
1374 for an example.
1375 </html:p>
1376 <html:p>
1377 If you use custom actions to set properties, ensure that they are scheduled before the WixRemoveFoldersEx custom action.
1378 </html:p>
1379 </xse:remarks>
1380 </xs:appinfo>
1381 <xs:documentation>
1382 Remove a folder and all contained files and folders if the parent component is selected for installation or removal.
1383 The folder must be specified in the Property attribute as the name of a property that will have a value that resolves
1384 to the full path of the folder before the CostInitialize action. Note that Directory ids cannot be used.
1385 For more details, see the Remarks.
1386 </xs:documentation>
1387 </xs:annotation>
1388 <xs:complexType>
1389 <xs:choice minOccurs="0" maxOccurs="unbounded">
1390 <xs:any namespace="##other" processContents="lax">
1391 <xs:annotation>
1392 <xs:documentation>
1393 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1394 elements at this point in the schema.
1395 </xs:documentation>
1396 </xs:annotation>
1397 </xs:any>
1398 </xs:choice>
1399 <xs:attribute name="Id" type="xs:string">
1400 <xs:annotation>
1401 <xs:documentation>
1402 Primary key used to identify this particular entry. If this is not specified, a stable identifier
1403 will be generated at compile time based on the other attributes.
1404 </xs:documentation>
1405 </xs:annotation>
1406 </xs:attribute>
1407 <xs:attribute name="Condition" type="xs:string">
1408 <xs:annotation>
1409 <xs:documentation>
1410 Condition that determines if the folders should be removed. Must be blank or evaluate to true
1411 for the folder to be scheduled for removal.
1412 </xs:documentation>
1413 </xs:annotation>
1414 </xs:attribute>
1415 <xs:attribute name="Property" type="xs:string">
1416 <xs:annotation>
1417 <xs:documentation>
1418 The id of a property that resolves to the full path of the source directory. The property does not have
1419 to exist in the installer database at creation time; it could be created at installation time by a custom
1420 action, on the command line, etc. The property value can contain environment variables surrounded by
1421 percent signs such as from a REG_EXPAND_SZ registry value; environment variables will be expanded before
1422 being evaluated for a full path.
1423 </xs:documentation>
1424 </xs:annotation>
1425 </xs:attribute>
1426 <xs:attribute name="On">
1427 <xs:annotation>
1428 <xs:documentation>
1429 This value determines when the folder may be removed.
1430 </xs:documentation>
1431 </xs:annotation>
1432 <xs:simpleType>
1433 <xs:restriction base="xs:NMTOKEN">
1434 <xs:enumeration value="install">
1435 <xs:annotation>
1436 <xs:documentation>
1437 Removes the folder only when the parent component is being installed (msiInstallStateLocal or msiInstallStateSource).
1438 </xs:documentation>
1439 </xs:annotation>
1440 </xs:enumeration>
1441 <xs:enumeration value="uninstall">
1442 <xs:annotation>
1443 <xs:documentation>
1444 Removes the folder only when the parent component is being removed (msiInstallStateAbsent). This is the default if the On attribute is not specified.
1445 </xs:documentation>
1446 </xs:annotation>
1447 </xs:enumeration>
1448 <xs:enumeration value="both">
1449 <xs:annotation>
1450 <xs:documentation>
1451 Removes the folder when the parent component is being installed or removed.
1452 </xs:documentation>
1453 </xs:annotation>
1454 </xs:enumeration>
1455 </xs:restriction>
1456 </xs:simpleType>
1457 </xs:attribute>
1458 <xs:anyAttribute namespace="##other" processContents="lax">
1459 <xs:annotation>
1460 <xs:documentation>
1461 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1462 attributes at this point in the schema.
1463 </xs:documentation>
1464 </xs:annotation>
1465 </xs:anyAttribute>
1466 </xs:complexType>
1467 </xs:element>
1468
1469 <xs:element name="RestartResource">
1470 <xs:annotation>
1471 <xs:documentation>Registers a resource with the Restart Manager.</xs:documentation>
1472 <xs:appinfo>
1473 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
1474 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
1475 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
1476 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
1477 </xs:appinfo>
1478 </xs:annotation>
1479 <xs:complexType>
1480 <xs:choice minOccurs="0" maxOccurs="unbounded">
1481 <xs:any namespace="##other" processContents="lax">
1482 <xs:annotation>
1483 <xs:documentation>
1484 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1485 elements at this point in the schema.
1486 </xs:documentation>
1487 </xs:annotation>
1488 </xs:any>
1489 </xs:choice>
1490 <xs:attribute name="Id" type="xs:string">
1491 <xs:annotation>
1492 <xs:documentation>
1493 The unique identifier for this resource. A unique identifier will
1494 be generated automatically if not specified.
1495 </xs:documentation>
1496 </xs:annotation>
1497 </xs:attribute>
1498 <xs:attribute name="Path" type="xs:string">
1499 <xs:annotation>
1500 <xs:documentation>
1501 The full path to the process module to register with the Restart Manager.
1502 This can be a formatted value that resolves to a full path.
1503 </xs:documentation>
1504 </xs:annotation>
1505 </xs:attribute>
1506 <xs:attribute name="ProcessName" type="xs:string">
1507 <xs:annotation>
1508 <xs:documentation>
1509 The name of a process to register with the Restart Manager.
1510 This can be a formatted value that resolves to a process name.
1511 </xs:documentation>
1512 </xs:annotation>
1513 </xs:attribute>
1514 <xs:attribute name="ServiceName" type="xs:string">
1515 <xs:annotation>
1516 <xs:documentation>
1517 The name of a Windows service to register with the Restart Manager.
1518 This can be a formatted value that resolves to a service name.
1519 </xs:documentation>
1520 </xs:annotation>
1521 </xs:attribute>
1522 <xs:anyAttribute namespace="##other" processContents="lax">
1523 <xs:annotation>
1524 <xs:documentation>
1525 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1526 attributes at this point in the schema.
1527 </xs:documentation>
1528 </xs:annotation>
1529 </xs:anyAttribute>
1530 </xs:complexType>
1531 </xs:element>
1532
1533 <xs:element name="RegistrySearch">
1534 <xs:annotation>
1535 <xs:documentation>Describes a registry search.</xs:documentation>
1536 <xs:appinfo>
1537 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
1538 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
1539 </xs:appinfo>
1540 </xs:annotation>
1541 <xs:complexType>
1542 <xs:choice minOccurs="0" maxOccurs="unbounded">
1543 <xs:any namespace="##other" processContents="lax">
1544 <xs:annotation>
1545 <xs:documentation>
1546 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1547 elements at this point in the schema.
1548 </xs:documentation>
1549 </xs:annotation>
1550 </xs:any>
1551 </xs:choice>
1552 <xs:attributeGroup ref="SearchCommonAttributes" />
1553 <xs:attribute name="Bitness" type="wxs:BitnessTypeUnion">
1554 <xs:annotation>
1555 <xs:documentation>
1556 Overrides the default registry to search. The value `always64` will force
1557 the search to look in the 64-bit registry even when building for 32-bit.
1558 Simliarly, the value `always32` will force the search to look in the 32-bit
1559 registry even when building for 64-bit.
1560 The default value is `default` where the search will look in the same registry
1561 as the bitness of the package.
1562 </xs:documentation>
1563 </xs:annotation>
1564 </xs:attribute>
1565 <xs:attribute name="Root" use="required">
1566 <xs:annotation>
1567 <xs:documentation>Registry root hive to search under.</xs:documentation>
1568 </xs:annotation>
1569 <xs:simpleType>
1570 <xs:restriction base="xs:NMTOKEN">
1571 <xs:enumeration value="HKLM">
1572 <xs:annotation>
1573 <xs:documentation>HKEY_LOCAL_MACHINE</xs:documentation>
1574 </xs:annotation>
1575 </xs:enumeration>
1576 <xs:enumeration value="HKCU">
1577 <xs:annotation>
1578 <xs:documentation>HKEY_CURRENT_USER</xs:documentation>
1579 </xs:annotation>
1580 </xs:enumeration>
1581 <xs:enumeration value="HKCR">
1582 <xs:annotation>
1583 <xs:documentation>HKEY_CLASSES_ROOT</xs:documentation>
1584 </xs:annotation>
1585 </xs:enumeration>
1586 <xs:enumeration value="HKU">
1587 <xs:annotation>
1588 <xs:documentation>HKEY_USERS</xs:documentation>
1589 </xs:annotation>
1590 </xs:enumeration>
1591 </xs:restriction>
1592 </xs:simpleType>
1593 </xs:attribute>
1594 <xs:attribute name="Key" type="xs:string" use="required">
1595 <xs:annotation>
1596 <xs:documentation>Key to search for.</xs:documentation>
1597 </xs:annotation>
1598 </xs:attribute>
1599 <xs:attribute name="Value" type="xs:string">
1600 <xs:annotation>
1601 <xs:documentation>Optional value to search for under the given Key.</xs:documentation>
1602 </xs:annotation>
1603 </xs:attribute>
1604 <xs:attribute name="ExpandEnvironmentVariables" type="wxs:YesNoTypeUnion">
1605 <xs:annotation>
1606 <xs:documentation>Whether to expand any environment variables in REG_SZ, REG_EXPAND_SZ, or REG_MULTI_SZ values.</xs:documentation>
1607 </xs:annotation>
1608 </xs:attribute>
1609 <xs:attribute name="Result">
1610 <xs:annotation>
1611 <xs:documentation>
1612 Rather than saving the matching registry value into the variable, a RegistrySearch can save an attribute of the matching entry instead.
1613 </xs:documentation>
1614 </xs:annotation>
1615 <xs:simpleType>
1616 <xs:restriction base="xs:NMTOKEN">
1617 <xs:enumeration value="exists">
1618 <xs:annotation>
1619 <xs:documentation>Saves true if a matching registry entry is found; false otherwise.</xs:documentation>
1620 </xs:annotation>
1621 </xs:enumeration>
1622 <xs:enumeration value="value">
1623 <xs:annotation>
1624 <xs:documentation>Saves the value of the registry key in the variable. This is the default.</xs:documentation>
1625 </xs:annotation>
1626 </xs:enumeration>
1627 </xs:restriction>
1628 </xs:simpleType>
1629 </xs:attribute>
1630 <xs:anyAttribute namespace="##other" processContents="lax">
1631 <xs:annotation>
1632 <xs:documentation>
1633 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1634 attributes at this point in the schema.
1635 </xs:documentation>
1636 </xs:annotation>
1637 </xs:anyAttribute>
1638 </xs:complexType>
1639 </xs:element>
1640
1641 <xs:element name="RegistrySearchRef">
1642 <xs:annotation>
1643 <xs:documentation>References a RegistrySearch.</xs:documentation>
1644 <xs:appinfo>
1645 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
1646 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
1647 </xs:appinfo>
1648 </xs:annotation>
1649 <xs:complexType>
1650 <xs:choice minOccurs="0" maxOccurs="unbounded">
1651 <xs:any namespace="##other" processContents="lax">
1652 <xs:annotation>
1653 <xs:documentation>
1654 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1655 elements at this point in the schema.
1656 </xs:documentation>
1657 </xs:annotation>
1658 </xs:any>
1659 </xs:choice>
1660 <xs:attribute name="Id" type="xs:string" use="required" />
1661 <xs:anyAttribute namespace="##other" processContents="lax">
1662 <xs:annotation>
1663 <xs:documentation>
1664 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1665 attributes at this point in the schema.
1666 </xs:documentation>
1667 </xs:annotation>
1668 </xs:anyAttribute>
1669 </xs:complexType>
1670 </xs:element>
1671
1672 <xs:element name="ServiceConfig">
1673 <xs:annotation>
1674 <xs:documentation>Service configuration information for failure actions.</xs:documentation>
1675 <xs:appinfo>
1676 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
1677 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="ServiceInstall" />
1678 <xse:remarks>
1679 Nesting a ServiceConfig element under a ServiceInstall element will result in the service being installed to be configured.
1680 Nesting a ServiceConfig element under a component element will result in an already installed service to be configured. If the service does not exist prior to the install of the MSI package, the install will fail.
1681 </xse:remarks>
1682 </xs:appinfo>
1683 </xs:annotation>
1684 <xs:complexType>
1685 <xs:choice minOccurs="0" maxOccurs="unbounded">
1686 <xs:any namespace="##other" processContents="lax">
1687 <xs:annotation>
1688 <xs:documentation>
1689 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1690 elements at this point in the schema.
1691 </xs:documentation>
1692 </xs:annotation>
1693 </xs:any>
1694 </xs:choice>
1695 <xs:attribute name="ServiceName" type="xs:string">
1696 <xs:annotation>
1697 <xs:documentation>Required if not under a ServiceInstall element.</xs:documentation>
1698 </xs:annotation>
1699 </xs:attribute>
1700 <xs:attribute name="FirstFailureActionType" use="required">
1701 <xs:annotation>
1702 <xs:documentation>Action to take on the first failure of the service.</xs:documentation>
1703 </xs:annotation>
1704 <xs:simpleType>
1705 <xs:restriction base="xs:NMTOKEN">
1706 <xs:enumeration value="none" />
1707 <xs:enumeration value="reboot" />
1708 <xs:enumeration value="restart" />
1709 <xs:enumeration value="runCommand" />
1710 </xs:restriction>
1711 </xs:simpleType>
1712 </xs:attribute>
1713 <xs:attribute name="SecondFailureActionType" use="required">
1714 <xs:annotation>
1715 <xs:documentation>Action to take on the second failure of the service.</xs:documentation>
1716 </xs:annotation>
1717 <xs:simpleType>
1718 <xs:restriction base="xs:NMTOKEN">
1719 <xs:enumeration value="none" />
1720 <xs:enumeration value="reboot" />
1721 <xs:enumeration value="restart" />
1722 <xs:enumeration value="runCommand" />
1723 </xs:restriction>
1724 </xs:simpleType>
1725 </xs:attribute>
1726 <xs:attribute name="ThirdFailureActionType" use="required">
1727 <xs:annotation>
1728 <xs:documentation>Action to take on the third failure of the service.</xs:documentation>
1729 </xs:annotation>
1730 <xs:simpleType>
1731 <xs:restriction base="xs:NMTOKEN">
1732 <xs:enumeration value="none" />
1733 <xs:enumeration value="reboot" />
1734 <xs:enumeration value="restart" />
1735 <xs:enumeration value="runCommand" />
1736 </xs:restriction>
1737 </xs:simpleType>
1738 </xs:attribute>
1739 <xs:attribute name="ResetPeriodInDays" type="wxs:Integer">
1740 <xs:annotation>
1741 <xs:documentation>Number of days after which to reset the failure count to zero if there are no failures.</xs:documentation>
1742 </xs:annotation>
1743 </xs:attribute>
1744 <xs:attribute name="RestartServiceDelayInSeconds" type="wxs:Integer">
1745 <xs:annotation>
1746 <xs:documentation>If any of the three *ActionType attributes is "restart", this specifies the number of seconds to wait before doing so.</xs:documentation>
1747 </xs:annotation>
1748 </xs:attribute>
1749 <xs:attribute name="ProgramCommandLine" type="xs:string">
1750 <xs:annotation>
1751 <xs:documentation>If any of the three *ActionType attributes is "runCommand", this specifies the command to run when doing so. This value is formatted.</xs:documentation>
1752 </xs:annotation>
1753 </xs:attribute>
1754 <xs:attribute name="RebootMessage" type="xs:string">
1755 <xs:annotation>
1756 <xs:documentation>If any of the three *ActionType attributes is "reboot", this specifies the message to broadcast to server users before doing so.</xs:documentation>
1757 </xs:annotation>
1758 </xs:attribute>
1759 <xs:anyAttribute namespace="##other" processContents="lax">
1760 <xs:annotation>
1761 <xs:documentation>
1762 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1763 attributes at this point in the schema.
1764 </xs:documentation>
1765 </xs:annotation>
1766 </xs:anyAttribute>
1767 </xs:complexType>
1768 </xs:element>
1769
1770 <xs:element name="TouchFile">
1771 <xs:annotation>
1772 <xs:documentation>Updates the last modified date/time of a file.</xs:documentation>
1773 <xs:appinfo>
1774 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
1775 </xs:appinfo>
1776 </xs:annotation>
1777 <xs:complexType>
1778 <xs:choice minOccurs="0" maxOccurs="unbounded">
1779 <xs:any namespace="##other" processContents="lax">
1780 <xs:annotation>
1781 <xs:documentation>
1782 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1783 elements at this point in the schema.
1784 </xs:documentation>
1785 </xs:annotation>
1786 </xs:any>
1787 </xs:choice>
1788 <xs:attribute name="Id" type="xs:string">
1789 <xs:annotation>
1790 <xs:documentation>Identifier for the touch file operation. If the identifier is not specified it will be generated.</xs:documentation>
1791 </xs:annotation>
1792 </xs:attribute>
1793 <xs:attribute name="Path" use="required" type="xs:string">
1794 <xs:annotation>
1795 <xs:documentation>Path of the file to update. This value is formatted.</xs:documentation>
1796 </xs:annotation>
1797 </xs:attribute>
1798 <xs:attribute name="OnInstall" type="wxs:YesNoTypeUnion">
1799 <xs:annotation>
1800 <xs:documentation>Specifies whether or not the modified time of the file should be updated on install. If the OnInstall, OnReinstall and OnUninstall attributes are all absent the default is 'yes'.</xs:documentation>
1801 </xs:annotation>
1802 </xs:attribute>
1803 <xs:attribute name="OnReinstall" type="wxs:YesNoTypeUnion">
1804 <xs:annotation>
1805 <xs:documentation>Specifies whether or not the modified time of the file should be updated on reinstall. If the OnInstall, OnReinstall and OnUninstall attributes are all absent the default is 'yes'.</xs:documentation>
1806 </xs:annotation>
1807 </xs:attribute>
1808 <xs:attribute name="OnUninstall" type="wxs:YesNoTypeUnion">
1809 <xs:annotation>
1810 <xs:documentation>Specifies whether or not the modified time of the file should be updated on uninstall. If the OnInstall, OnReinstall and OnUninstall attributes are all absent the default is 'no'.</xs:documentation>
1811 </xs:annotation>
1812 </xs:attribute>
1813 <xs:attribute name="Nonvital" type="wxs:YesNoTypeUnion">
1814 <xs:annotation>
1815 <xs:documentation>Indicates the installation will succeed even if the modified time of the file cannot be updated. The default is 'no'.</xs:documentation>
1816 </xs:annotation>
1817 </xs:attribute>
1818 <xs:anyAttribute namespace="##other" processContents="lax">
1819 <xs:annotation>
1820 <xs:documentation>
1821 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1822 attributes at this point in the schema.
1823 </xs:documentation>
1824 </xs:annotation>
1825 </xs:anyAttribute>
1826 </xs:complexType>
1827 </xs:element>
1828
1829 <xs:element name="User">
1830 <xs:annotation>
1831 <xs:documentation>User for all kinds of things. When it is not nested under a component it is included in the MSI so it can be referenced by other elements such as the User attribute in the AppPool element. When it is nested under a Component element, the User will be created on install and can also be used for reference.</xs:documentation>
1832 <xs:appinfo>
1833 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
1834 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
1835 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
1836 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
1837 <xse:seeAlso ref="Group" />
1838 <xse:seeAlso ref="GroupRef" />
1839 </xs:appinfo>
1840 </xs:annotation>
1841 <xs:complexType>
1842 <xs:choice minOccurs="0" maxOccurs="unbounded">
1843 <xs:element ref="GroupRef" minOccurs="0" maxOccurs="unbounded" />
1844 <xs:any namespace="##other" processContents="lax">
1845 <xs:annotation>
1846 <xs:documentation>
1847 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1848 elements at this point in the schema.
1849 </xs:documentation>
1850 </xs:annotation>
1851 </xs:any>
1852 </xs:choice>
1853 <xs:attribute name="Id" type="xs:string" />
1854 <xs:attribute name="Name" type="xs:string" use="required">
1855 <xs:annotation>
1856 <xs:documentation>A [Formatted])(https://learn.microsoft.com/en-us/windows/win32/msi/formatted) string that contains the name of the user account.</xs:documentation>
1857 </xs:annotation>
1858 </xs:attribute>
1859 <xs:attribute name="Domain" type="xs:string">
1860 <xs:annotation>
1861 <xs:documentation>A [Formatted])(https://learn.microsoft.com/en-us/windows/win32/msi/formatted) string that contains the local machine or Active Directory domain for the user.</xs:documentation>
1862 </xs:annotation>
1863 </xs:attribute>
1864 <xs:attribute name="Password" type="xs:string">
1865 <xs:annotation>
1866 <xs:documentation>Usually a Property that is passed in on the command-line to keep it more secure.</xs:documentation>
1867 </xs:annotation>
1868 </xs:attribute>
1869 <xs:attribute name="PasswordNeverExpires" type="wxs:YesNoTypeUnion">
1870 <xs:annotation>
1871 <xs:documentation>The account's password never expires. Equivalent to UF_DONT_EXPIRE_PASSWD.</xs:documentation>
1872 </xs:annotation>
1873 </xs:attribute>
1874 <xs:attribute name="CanNotChangePassword" type="wxs:YesNoTypeUnion">
1875 <xs:annotation>
1876 <xs:documentation>The user cannot change the account's password. Equivalent to UF_PASSWD_CANT_CHANGE.</xs:documentation>
1877 </xs:annotation>
1878 </xs:attribute>
1879 <xs:attribute name="RemoveOnUninstall" type="wxs:YesNoTypeUnion">
1880 <xs:annotation>
1881 <xs:documentation>Indicates whether the user account should be removed or left behind on uninstall.</xs:documentation>
1882 </xs:annotation>
1883 </xs:attribute>
1884 <xs:attribute name="FailIfExists" type="wxs:YesNoTypeUnion">
1885 <xs:annotation>
1886 <xs:documentation>Indicates if the install should fail if the user already exists.</xs:documentation>
1887 </xs:annotation>
1888 </xs:attribute>
1889 <xs:attribute name="LogonAsService" type="wxs:YesNoTypeUnion">
1890 <xs:annotation>
1891 <xs:documentation>Indicates whether or not the user can logon as a serivce. User creation can be skipped if all that is desired is to set this access right on the user.</xs:documentation>
1892 </xs:annotation>
1893 </xs:attribute>
1894 <xs:attribute name="LogonAsBatchJob" type="wxs:YesNoTypeUnion">
1895 <xs:annotation>
1896 <xs:documentation>Indicates whether or not the user can logon as a batch job. User creation can be skipped if all that is desired is to set this access right on the user.</xs:documentation>
1897 </xs:annotation>
1898 </xs:attribute>
1899 <xs:attribute name="UpdateIfExists" type="wxs:YesNoTypeUnion">
1900 <xs:annotation>
1901 <xs:documentation>Indicates if the user account properties should be updated if the user already exists.</xs:documentation>
1902 </xs:annotation>
1903 </xs:attribute>
1904 <xs:attribute name="PasswordExpired" type="wxs:YesNoTypeUnion">
1905 <xs:annotation>
1906 <xs:documentation>Indicates whether the user must change their password on their first login.</xs:documentation>
1907 </xs:annotation>
1908 </xs:attribute>
1909 <xs:attribute name="Disabled" type="wxs:YesNoTypeUnion">
1910 <xs:annotation>
1911 <xs:documentation>The account is disabled. Equivalent to UF_ACCOUNTDISABLE.</xs:documentation>
1912 </xs:annotation>
1913 </xs:attribute>
1914 <xs:attribute name="CreateUser" type="wxs:YesNoTypeUnion">
1915 <xs:annotation>
1916 <xs:documentation>Indicates whether or not to create the user. User creation can be skipped if all that is desired is to join a user to groups.</xs:documentation>
1917 </xs:annotation>
1918 </xs:attribute>
1919 <xs:attribute name="Vital" type="wxs:YesNoTypeUnion">
1920 <xs:annotation>
1921 <xs:documentation>Indicates whether failure to create the user or add the user to a group fails the installation. The default value is "yes".</xs:documentation>
1922 </xs:annotation>
1923 </xs:attribute>
1924 <xs:attribute name="Comment" type="xs:string">
1925 <xs:annotation>
1926 <xs:documentation>Optional comment to set on the user.</xs:documentation>
1927 </xs:annotation>
1928 </xs:attribute>
1929 <xs:attribute name="RemoveComment" type="wxs:YesNoTypeUnion">
1930 <xs:annotation>
1931 <xs:documentation>Indicates whether remove the comment from the user. The default value is "no".</xs:documentation>
1932 </xs:annotation>
1933 </xs:attribute>
1934 <xs:anyAttribute namespace="##other" processContents="lax">
1935 <xs:annotation>
1936 <xs:documentation>
1937 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1938 attributes at this point in the schema.
1939 </xs:documentation>
1940 </xs:annotation>
1941 </xs:anyAttribute>
1942 </xs:complexType>
1943 </xs:element>
1944
1945 <xs:element name="WindowsFeatureSearch">
1946 <xs:annotation>
1947 <xs:documentation>Detects the existence of a Windows feature.</xs:documentation>
1948 <xs:appinfo>
1949 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
1950 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
1951 </xs:appinfo>
1952 </xs:annotation>
1953 <xs:complexType>
1954 <xs:choice minOccurs="0" maxOccurs="unbounded">
1955 <xs:any namespace="##other" processContents="lax">
1956 <xs:annotation>
1957 <xs:documentation>
1958 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1959 elements at this point in the schema.
1960 </xs:documentation>
1961 </xs:annotation>
1962 </xs:any>
1963 </xs:choice>
1964 <xs:attributeGroup ref="SearchCommonAttributes" />
1965 <xs:attribute name="Feature" use="required">
1966 <xs:annotation>
1967 <xs:documentation>The feature to detect.</xs:documentation>
1968 </xs:annotation>
1969 <xs:simpleType>
1970 <xs:restriction base="xs:NMTOKEN">
1971 <xs:enumeration value="sha2CodeSigning">
1972 <xs:annotation>
1973 <xs:documentation>The oldest OS with this feature is Win7 SP1 with KB3033929.</xs:documentation>
1974 </xs:annotation>
1975 </xs:enumeration>
1976 </xs:restriction>
1977 </xs:simpleType>
1978 </xs:attribute>
1979 <xs:anyAttribute namespace="##other" processContents="lax">
1980 <xs:annotation>
1981 <xs:documentation>
1982 Extensibility point in the WiX XML Schema. Schema extensions can register additional
1983 attributes at this point in the schema.
1984 </xs:documentation>
1985 </xs:annotation>
1986 </xs:anyAttribute>
1987 </xs:complexType>
1988 </xs:element>
1989
1990 <xs:element name="WindowsFeatureSearchRef">
1991 <xs:annotation>
1992 <xs:documentation>References a WindowsFeatureSearch.</xs:documentation>
1993 <xs:appinfo>
1994 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
1995 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
1996 </xs:appinfo>
1997 </xs:annotation>
1998 <xs:complexType>
1999 <xs:choice minOccurs="0" maxOccurs="unbounded">
2000 <xs:any namespace="##other" processContents="lax">
2001 <xs:annotation>
2002 <xs:documentation>
2003 Extensibility point in the WiX XML Schema. Schema extensions can register additional
2004 elements at this point in the schema.
2005 </xs:documentation>
2006 </xs:annotation>
2007 </xs:any>
2008 </xs:choice>
2009 <xs:attribute name="Id" type="xs:string" use="required" />
2010 <xs:anyAttribute namespace="##other" processContents="lax">
2011 <xs:annotation>
2012 <xs:documentation>
2013 Extensibility point in the WiX XML Schema. Schema extensions can register additional
2014 attributes at this point in the schema.
2015 </xs:documentation>
2016 </xs:annotation>
2017 </xs:anyAttribute>
2018 </xs:complexType>
2019 </xs:element>
2020
2021 <xs:element name="XmlFile">
2022 <xs:annotation>
2023 <xs:documentation>
2024 Adds or removes .xml file entries. If you use the XmlFile element you must reference WixUtilExtension.dll as it contains the XmlFile custom actions.
2025 </xs:documentation>
2026 <xs:appinfo>
2027 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
2028 </xs:appinfo>
2029 </xs:annotation>
2030 <xs:complexType>
2031 <xs:choice minOccurs="0" maxOccurs="unbounded">
2032 <xs:any namespace="##other" processContents="lax">
2033 <xs:annotation>
2034 <xs:documentation>
2035 Extensibility point in the WiX XML Schema. Schema extensions can register additional
2036 elements at this point in the schema.
2037 </xs:documentation>
2038 </xs:annotation>
2039 </xs:any>
2040 </xs:choice>
2041 <xs:attribute name="Id" type="xs:string">
2042 <xs:annotation>
2043 <xs:documentation>Identifier for xml file modification.</xs:documentation>
2044 </xs:annotation>
2045 </xs:attribute>
2046 <xs:attribute name="ElementPath" type="xs:string" use="required">
2047 <xs:annotation>
2048 <xs:documentation>The XPath of the element to be modified. Note that this is a formatted field and therefore, square brackets in the XPath must be escaped. In addition, XPaths allow backslashes to be used to escape characters, so if you intend to include literal backslashes, you must escape them as well by doubling them in this attribute. The string is formatted by MSI first, and the result is consumed as the XPath.</xs:documentation>
2049 </xs:annotation>
2050 </xs:attribute>
2051 <xs:attribute name="File" type="xs:string" use="required">
2052 <xs:annotation>
2053 <xs:documentation>Path of the .xml file to configure.</xs:documentation>
2054 </xs:annotation>
2055 </xs:attribute>
2056 <xs:attribute name="Name" type="xs:string">
2057 <xs:annotation>
2058 <xs:documentation>Name of XML node to set/add to the specified element. Not setting this attribute causes the element's text value to be set. Otherwise this specified the attribute name that is set.</xs:documentation>
2059 </xs:annotation>
2060 </xs:attribute>
2061 <xs:attribute name="Value" type="xs:string">
2062 <xs:annotation>
2063 <xs:documentation>
2064 The value to be written. See the <html:a href="http://msdn.microsoft.com/library/aa368609(VS.85).aspx" target="_blank">Formatted topic</html:a> for information how to escape square brackets in the value.
2065 </xs:documentation>
2066 </xs:annotation>
2067 </xs:attribute>
2068 <xs:attribute name="Action" use="required">
2069 <xs:annotation>
2070 <xs:documentation>The type of modification to be made to the XML file when the component is installed.</xs:documentation>
2071 </xs:annotation>
2072 <xs:simpleType>
2073 <xs:restriction base="xs:NMTOKEN">
2074 <xs:enumeration value="createElement">
2075 <xs:annotation>
2076 <xs:documentation>Creates a new element under the element specified in ElementPath. The Name attribute is required in this case and specifies the name of the new element. The Value attribute is not necessary when createElement is specified as the action. If the Value attribute is set, it will cause the new element's text value to be set.</xs:documentation>
2077 </xs:annotation>
2078 </xs:enumeration>
2079 <xs:enumeration value="deleteValue">
2080 <xs:annotation>
2081 <xs:documentation>Deletes a value from the element specified in the ElementPath. If Name is specified, the attribute with that name is deleted. If Name is not specified, the text value of the element specified in the ElementPath is deleted. The Value attribute is ignored if deleteValue is the action specified.</xs:documentation>
2082 </xs:annotation>
2083 </xs:enumeration>
2084 <xs:enumeration value="setValue">
2085 <xs:annotation>
2086 <xs:documentation>Sets a value in the element specified in the ElementPath. If Name is specified, and attribute with that name is set to the value specified in Value. If Name is not specified, the text value of the element is set. Value is a required attribute if setValue is the action specified.</xs:documentation>
2087 </xs:annotation>
2088 </xs:enumeration>
2089 <xs:enumeration value="bulkSetValue">
2090 <xs:annotation>
2091 <xs:documentation>Sets all the values in the elements that match the ElementPath. If Name is specified, attributes with that name are set to the same value specified in Value. If Name is not specified, the text values of the elements are set. Value is a required attribute if setBulkValue is the action specified.</xs:documentation>
2092 </xs:annotation>
2093 </xs:enumeration>
2094 </xs:restriction>
2095 </xs:simpleType>
2096 </xs:attribute>
2097 <xs:attribute name="Permanent" type="wxs:YesNoTypeUnion">
2098 <xs:annotation>
2099 <xs:documentation>Specifies whether or not the modification should be removed on uninstall. This has no effect on uninstall if the action was deleteValue.</xs:documentation>
2100 </xs:annotation>
2101 </xs:attribute>
2102 <xs:attribute name="PreserveModifiedDate" type="wxs:YesNoTypeUnion">
2103 <xs:annotation>
2104 <xs:documentation>Specifies wheter or not the modification should preserve the modified date. Preserving the modified date will allow the file to be patched if no other modifications have been made.</xs:documentation>
2105 </xs:annotation>
2106 </xs:attribute>
2107 <xs:attribute name="Sequence" type="wxs:Integer">
2108 <xs:annotation>
2109 <xs:documentation>Specifies the order in which the modification is to be attempted on the XML file. It is important to ensure that new elements are created before you attempt to add an attribute to them.</xs:documentation>
2110 </xs:annotation>
2111 </xs:attribute>
2112 <xs:attribute name="SelectionLanguage">
2113 <xs:annotation>
2114 <xs:documentation>
2115 Specify whether the DOM object should use XPath language or the old XSLPattern language (default) as the query language.
2116 </xs:documentation>
2117 </xs:annotation>
2118 <xs:simpleType>
2119 <xs:restriction base="xs:NMTOKEN">
2120 <xs:enumeration value="XPath" />
2121 <xs:enumeration value="XSLPattern" />
2122 </xs:restriction>
2123 </xs:simpleType>
2124 </xs:attribute>
2125 <xs:anyAttribute namespace="##other" processContents="lax">
2126 <xs:annotation>
2127 <xs:documentation>
2128 Extensibility point in the WiX XML Schema. Schema extensions can register additional
2129 attributes at this point in the schema.
2130 </xs:documentation>
2131 </xs:annotation>
2132 </xs:anyAttribute>
2133 </xs:complexType>
2134 </xs:element>
2135
2136 <xs:element name="XmlConfig">
2137 <xs:annotation>
2138 <xs:documentation>
2139 Adds or removes .xml file entries. If you use the XmlConfig element you must reference WixUtilExtension.dll as it contains the XmlConfig custom actions.
2140 </xs:documentation>
2141 <xs:appinfo>
2142 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
2143 </xs:appinfo>
2144 </xs:annotation>
2145 <xs:complexType>
2146 <xs:choice minOccurs="0" maxOccurs="unbounded">
2147 <xs:element ref="XmlConfig" />
2148 <xs:any namespace="##other" processContents="lax">
2149 <xs:annotation>
2150 <xs:documentation>
2151 Extensibility point in the WiX XML Schema. Schema extensions can register additional
2152 elements at this point in the schema.
2153 </xs:documentation>
2154 </xs:annotation>
2155 </xs:any>
2156 </xs:choice>
2157 <xs:attribute name="Id" type="xs:string">
2158 <xs:annotation>
2159 <xs:documentation>Identifier for xml file modification.</xs:documentation>
2160 </xs:annotation>
2161 </xs:attribute>
2162 <xs:attribute name="Action">
2163 <xs:simpleType>
2164 <xs:restriction base="xs:NMTOKEN">
2165 <xs:enumeration value="create" />
2166 <xs:enumeration value="delete" />
2167 </xs:restriction>
2168 </xs:simpleType>
2169 </xs:attribute>
2170 <xs:attribute name="ElementId" type="xs:string">
2171 <xs:annotation>
2172 <xs:documentation>The Id of another XmlConfig to add attributes to. In this case, the 'ElementPath', 'Action', 'Node', and 'On' attributes must be omitted.</xs:documentation>
2173 </xs:annotation>
2174 </xs:attribute>
2175 <xs:attribute name="ElementPath" type="xs:string">
2176 <xs:annotation>
2177 <xs:documentation>The XPath of the parent element being modified. Note that this is a formatted field and therefore, square brackets in the XPath must be escaped. In addition, XPaths allow backslashes to be used to escape characters, so if you intend to include literal backslashes, you must escape them as well by doubling them in this attribute. The string is formatted by MSI first, and the result is consumed as the XPath.</xs:documentation>
2178 </xs:annotation>
2179 </xs:attribute>
2180 <xs:attribute name="File" type="xs:string" use="required">
2181 <xs:annotation>
2182 <xs:documentation>Path of the .xml file to configure.</xs:documentation>
2183 </xs:annotation>
2184 </xs:attribute>
2185 <xs:attribute name="Name" type="xs:string">
2186 <xs:annotation>
2187 <xs:documentation>Name of XML node to set/add to the specified element. Not setting this attribute causes the element's text value to be set. Otherwise this specified the attribute name that is set.</xs:documentation>
2188 </xs:annotation>
2189 </xs:attribute>
2190 <xs:attribute name="Node">
2191 <xs:simpleType>
2192 <xs:restriction base="xs:NMTOKEN">
2193 <xs:enumeration value="element" />
2194 <xs:enumeration value="value" />
2195 <xs:enumeration value="document" />
2196 </xs:restriction>
2197 </xs:simpleType>
2198 </xs:attribute>
2199 <xs:attribute name="On">
2200 <xs:simpleType>
2201 <xs:restriction base="xs:NMTOKEN">
2202 <xs:enumeration value="install" />
2203 <xs:enumeration value="uninstall" />
2204 </xs:restriction>
2205 </xs:simpleType>
2206 </xs:attribute>
2207 <xs:attribute name="PreserveModifiedDate" type="wxs:YesNoTypeUnion">
2208 <xs:annotation>
2209 <xs:documentation>Specifies wheter or not the modification should preserve the modified date. Preserving the modified date will allow the file to be patched if no other modifications have been made.</xs:documentation>
2210 </xs:annotation>
2211 </xs:attribute>
2212 <xs:attribute name="Sequence" type="wxs:Integer">
2213 <xs:annotation>
2214 <xs:documentation>Specifies the order in which the modification is to be attempted on the XML file. It is important to ensure that new elements are created before you attempt to add an attribute to them.</xs:documentation>
2215 </xs:annotation>
2216 </xs:attribute>
2217 <xs:attribute name="Value" type="xs:string">
2218 <xs:annotation>
2219 <xs:documentation>
2220 The value to be written. See the <html:a href="https://docs.microsoft.com/en-us/windows/win32/msi/formatted" target="_blank">Formatted topic</html:a> for information how to escape square brackets in the value.
2221 </xs:documentation>
2222 </xs:annotation>
2223 </xs:attribute>
2224 <xs:attribute name="VerifyPath" type="xs:string">
2225 <xs:annotation>
2226 <xs:documentation>The XPath to the element being modified. This is required for 'delete' actions. For 'create' actions, VerifyPath is used to decide if the element already exists. Note that this is a formatted field and therefore, square brackets in the XPath must be escaped. In addition, XPaths allow backslashes to be used to escape characters, so if you intend to include literal backslashes, you must escape them as well by doubling them in this attribute. The string is formatted by MSI first, and the result is consumed as the XPath.</xs:documentation>
2227 </xs:annotation>
2228 </xs:attribute>
2229 <xs:anyAttribute namespace="##other" processContents="lax">
2230 <xs:annotation>
2231 <xs:documentation>
2232 Extensibility point in the WiX XML Schema. Schema extensions can register additional
2233 attributes at this point in the schema.
2234 </xs:documentation>
2235 </xs:annotation>
2236 </xs:anyAttribute>
2237 </xs:complexType>
2238 </xs:element>
2239
2240 <xs:element name="BroadcastEnvironmentChange">
2241 <xs:annotation>
2242 <xs:documentation>Schedules the BroadcastEnvironmentChange custom action for the current platform.</xs:documentation>
2243 <xs:appinfo>
2244 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
2245 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
2246 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
2247 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" />
2248 </xs:appinfo>
2249 </xs:annotation>
2250 </xs:element>
2251
2252 <xs:element name="BroadcastSettingChange">
2253 <xs:annotation>
2254 <xs:documentation>Schedules the BroadcastSettingChange custom action for the current platform.</xs:documentation>
2255 <xs:appinfo>
2256 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
2257 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
2258 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
2259 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" />
2260 </xs:appinfo>
2261 </xs:annotation>
2262 </xs:element>
2263
2264 <xs:element name="CheckRebootRequired">
2265 <xs:annotation>
2266 <xs:documentation>Schedules the CheckRebootRequired custom action for the current platform.</xs:documentation>
2267 <xs:appinfo>
2268 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
2269 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
2270 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
2271 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" />
2272 </xs:appinfo>
2273 </xs:annotation>
2274 </xs:element>
2275
2276 <xs:element name="ExitEarlyWithSuccess">
2277 <xs:annotation>
2278 <xs:documentation>Schedules the ExitEarlyWithSuccess custom action for the current platform.</xs:documentation>
2279 <xs:appinfo>
2280 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
2281 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
2282 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
2283 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" />
2284 </xs:appinfo>
2285 </xs:annotation>
2286 </xs:element>
2287
2288 <xs:element name="FailWhenDeferred">
2289 <xs:annotation>
2290 <xs:documentation>Schedules the FailWhenDeferred custom action for the current platform.</xs:documentation>
2291 <xs:appinfo>
2292 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
2293 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
2294 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
2295 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" />
2296 </xs:appinfo>
2297 </xs:annotation>
2298 </xs:element>
2299
2300 <xs:element name="WaitForEvent">
2301 <xs:annotation>
2302 <xs:documentation>Schedules the WaitForEvent custom action for the current platform.</xs:documentation>
2303 <xs:appinfo>
2304 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
2305 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
2306 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
2307 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" />
2308 </xs:appinfo>
2309 </xs:annotation>
2310 </xs:element>
2311
2312 <xs:element name="WaitForEventDeferred">
2313 <xs:annotation>
2314 <xs:documentation>Schedules the WaitForEventDeferred custom action for the current platform.</xs:documentation>
2315 <xs:appinfo>
2316 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
2317 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
2318 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
2319 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" />
2320 </xs:appinfo>
2321 </xs:annotation>
2322 </xs:element>
2323
2324 <xs:element name="QueryNativeMachine">
2325 <xs:annotation>
2326 <xs:documentation>
2327 Schedules the QueryNativeMachine custom action for the current platform. For more information, see [QueryNativeMachine properties](../../../tools/wixext/wininfo#querynativemachine).
2328 </xs:documentation>
2329 <xs:appinfo>
2330 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
2331 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
2332 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
2333 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" />
2334 </xs:appinfo>
2335 </xs:annotation>
2336 </xs:element>
2337
2338 <xs:element name="QueryWindowsDirectories">
2339 <xs:annotation>
2340 <xs:documentation>
2341 Schedules the QueryOsDirs custom action for the current platform. For more information, see [QueryWindowsDirectories properties](../../../tools/wixext/wininfo#querywindowsdirectories).
2342 </xs:documentation>
2343 <xs:appinfo>
2344 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
2345 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
2346 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
2347 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" />
2348 </xs:appinfo>
2349 </xs:annotation>
2350 </xs:element>
2351
2352 <xs:element name="QueryWindowsDriverInfo">
2353 <xs:annotation>
2354 <xs:documentation>
2355 Schedules the QueryOsDriverInfo custom action for the current platform. For more information, see [QueryWindowsDriverInfo properties](../../../tools/wixext/wininfo#querywindowsdriverinfo).
2356 </xs:documentation>
2357 <xs:appinfo>
2358 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
2359 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
2360 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
2361 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" />
2362 </xs:appinfo>
2363 </xs:annotation>
2364 </xs:element>
2365
2366 <xs:element name="QueryWindowsSuiteInfo">
2367 <xs:annotation>
2368 <xs:documentation>
2369 Schedules the QueryOsInfo custom action for the current platform. For more information, see [QueryWindowsSuiteInfo properties](../../../tools/wixext/wininfo#querywindowssuiteinfo).
2370 </xs:documentation>
2371 <xs:appinfo>
2372 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
2373 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
2374 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
2375 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" />
2376 </xs:appinfo>
2377 </xs:annotation>
2378 </xs:element>
2379
2380 <xs:element name="QueryWindowsWellKnownSIDs">
2381 <xs:annotation>
2382 <xs:documentation>
2383 Schedules the QueryOsWellKnownSID custom action for the current platform. For more information, see [QueryWindowsWellKnownSIDs properties](../../../tools/wixext/wininfo#querywindowswellknownsids).
2384 </xs:documentation>
2385 <xs:documentation>Schedules the QueryOsWellKnownSID custom action for the current platform.</xs:documentation>
2386 <xs:appinfo>
2387 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
2388 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
2389 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
2390 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" />
2391 </xs:appinfo>
2392 </xs:annotation>
2393 </xs:element>
2394
2395 <xs:attributeGroup name="SearchCommonAttributes">
2396 <xs:attribute name="Id" type="xs:string">
2397 <xs:annotation>
2398 <xs:documentation>Id of the search for ordering and dependency.</xs:documentation>
2399 </xs:annotation>
2400 </xs:attribute>
2401 <xs:attribute name="Variable" type="xs:string" use="required">
2402 <xs:annotation>
2403 <xs:documentation>Name of the variable in which to place the result of the search.</xs:documentation>
2404 </xs:annotation>
2405 </xs:attribute>
2406 <xs:attribute name="Condition" type="xs:string">
2407 <xs:annotation>
2408 <xs:documentation>Condition for evaluating the search. If this evaluates to false, the search is not executed at all.</xs:documentation>
2409 </xs:annotation>
2410 </xs:attribute>
2411 <xs:attribute name="After" type="xs:string">
2412 <xs:annotation>
2413 <xs:documentation>Id of the search that this one should come after.</xs:documentation>
2414 </xs:annotation>
2415 </xs:attribute>
2416 </xs:attributeGroup>
2417
2418 <xs:simpleType name="PerformanceCounterLanguageType">
2419 <xs:annotation>
2420 <xs:documentation>Enumeration of valid languages for performance counters.</xs:documentation>
2421 </xs:annotation>
2422 <xs:restriction base="xs:NMTOKEN">
2423 <xs:enumeration value="afrikaans" />
2424 <xs:enumeration value="albanian" />
2425 <xs:enumeration value="arabic" />
2426 <xs:enumeration value="armenian" />
2427 <xs:enumeration value="assamese" />
2428 <xs:enumeration value="azeri" />
2429 <xs:enumeration value="basque" />
2430 <xs:enumeration value="belarusian" />
2431 <xs:enumeration value="bengali" />
2432 <xs:enumeration value="bulgarian" />
2433 <xs:enumeration value="catalan" />
2434 <xs:enumeration value="chinese" />
2435 <xs:enumeration value="croatian" />
2436 <xs:enumeration value="czech" />
2437 <xs:enumeration value="danish" />
2438 <xs:enumeration value="divehi" />
2439 <xs:enumeration value="dutch" />
2440 <xs:enumeration value="english" />
2441 <xs:enumeration value="estonian" />
2442 <xs:enumeration value="faeroese" />
2443 <xs:enumeration value="farsi" />
2444 <xs:enumeration value="finnish" />
2445 <xs:enumeration value="french" />
2446 <xs:enumeration value="galician" />
2447 <xs:enumeration value="georgian" />
2448 <xs:enumeration value="german" />
2449 <xs:enumeration value="greek" />
2450 <xs:enumeration value="gujarati" />
2451 <xs:enumeration value="hebrew" />
2452 <xs:enumeration value="hindi" />
2453 <xs:enumeration value="hungarian" />
2454 <xs:enumeration value="icelandic" />
2455 <xs:enumeration value="indonesian" />
2456 <xs:enumeration value="italian" />
2457 <xs:enumeration value="japanese" />
2458 <xs:enumeration value="kannada" />
2459 <xs:enumeration value="kashmiri" />
2460 <xs:enumeration value="kazak" />
2461 <xs:enumeration value="konkani" />
2462 <xs:enumeration value="korean" />
2463 <xs:enumeration value="kyrgyz" />
2464 <xs:enumeration value="latvian" />
2465 <xs:enumeration value="lithuanian" />
2466 <xs:enumeration value="macedonian" />
2467 <xs:enumeration value="malay" />
2468 <xs:enumeration value="malayalam" />
2469 <xs:enumeration value="manipuri" />
2470 <xs:enumeration value="marathi" />
2471 <xs:enumeration value="mongolian" />
2472 <xs:enumeration value="nepali" />
2473 <xs:enumeration value="norwegian" />
2474 <xs:enumeration value="oriya" />
2475 <xs:enumeration value="polish" />
2476 <xs:enumeration value="portuguese" />
2477 <xs:enumeration value="punjabi" />
2478 <xs:enumeration value="romanian" />
2479 <xs:enumeration value="russian" />
2480 <xs:enumeration value="sanskrit" />
2481 <xs:enumeration value="serbian" />
2482 <xs:enumeration value="sindhi" />
2483 <xs:enumeration value="slovak" />
2484 <xs:enumeration value="slovenian" />
2485 <xs:enumeration value="spanish" />
2486 <xs:enumeration value="swahili" />
2487 <xs:enumeration value="swedish" />
2488 <xs:enumeration value="syriac" />
2489 <xs:enumeration value="tamil" />
2490 <xs:enumeration value="tatar" />
2491 <xs:enumeration value="telugu" />
2492 <xs:enumeration value="thai" />
2493 <xs:enumeration value="turkish" />
2494 <xs:enumeration value="ukrainian" />
2495 <xs:enumeration value="urdu" />
2496 <xs:enumeration value="uzbek" />
2497 <xs:enumeration value="vietnamese" />
2498 </xs:restriction>
2499 </xs:simpleType>
2500
2501 <xs:simpleType name="PerformanceCounterTypesType">
2502 <xs:annotation>
2503 <xs:documentation>Enumeration of valid types for performance counters.</xs:documentation>
2504 </xs:annotation>
2505 <xs:restriction base="xs:NMTOKEN">
2506 <xs:enumeration value="averageBase" />
2507 <xs:enumeration value="averageCount64" />
2508 <xs:enumeration value="averageTimer32" />
2509 <xs:enumeration value="counterDelta32" />
2510 <xs:enumeration value="counterTimerInverse" />
2511 <xs:enumeration value="sampleFraction" />
2512 <xs:enumeration value="timer100Ns" />
2513 <xs:enumeration value="counterTimer" />
2514 <xs:enumeration value="rawFraction" />
2515 <xs:enumeration value="timer100NsInverse" />
2516 <xs:enumeration value="counterMultiTimer" />
2517 <xs:enumeration value="counterMultiTimer100Ns" />
2518 <xs:enumeration value="counterMultiTimerInverse" />
2519 <xs:enumeration value="counterMultiTimer100NsInverse" />
2520 <xs:enumeration value="elapsedTime" />
2521 <xs:enumeration value="sampleBase" />
2522 <xs:enumeration value="rawBase" />
2523 <xs:enumeration value="counterMultiBase" />
2524 <xs:enumeration value="rateOfCountsPerSecond64" />
2525 <xs:enumeration value="rateOfCountsPerSecond32" />
2526 <xs:enumeration value="countPerTimeInterval64" />
2527 <xs:enumeration value="countPerTimeInterval32" />
2528 <xs:enumeration value="sampleCounter" />
2529 <xs:enumeration value="counterDelta64" />
2530 <xs:enumeration value="numberOfItems64" />
2531 <xs:enumeration value="numberOfItems32" />
2532 <xs:enumeration value="numberOfItemsHEX64" />
2533 <xs:enumeration value="numberOfItemsHEX32" />
2534 </xs:restriction>
2535 </xs:simpleType>
2536</xs:schema>