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