-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathtoc.yml
More file actions
2718 lines (2718 loc) · 157 KB
/
toc.yml
File metadata and controls
2718 lines (2718 loc) · 157 KB
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
items:
- name: "Reference"
href: index.yml
items:
- name: "Windows Runtime (WinRT) namespaces"
href: /uwp/api/
- name: "Windows UI Library (WinUI) namespaces"
href: /uwp/api/overview/winui/
- name: "Schemas"
href: schemas/index.md
items:
- name: "App installer file"
href: schemas/appinstallerschema/app-installer-file.md
items:
- name: "App installer file schema reference"
href: schemas/appinstallerschema/schema-root.md
items:
- name: "Element Hierarchy"
href: schemas/appinstallerschema/root-elements.md
items:
- name: "AppInstaller"
href: schemas/appinstallerschema/element-appinstaller.md
- name: "Bundle"
href: schemas/appinstallerschema/element-bundle.md
- name: "Dependencies"
href: schemas/appinstallerschema/element-dependencies.md
- name: "MainBundle"
href: schemas/appinstallerschema/element-main-bundle.md
- name: "MainPackage"
href: schemas/appinstallerschema/element-main-package.md
- name: "OnLaunch"
href: schemas/appinstallerschema/element-onlaunch.md
- name: "OptionalPackages"
href: schemas/appinstallerschema/element-optional-packages.md
- name: "Package"
href: schemas/appinstallerschema/element-package.md
- name: "RelatedPackages"
href: schemas/appinstallerschema/element-related-packages.md
- name: "UpdateSettings"
href: schemas/appinstallerschema/element-update-settings.md
- name: "s2:AppInstaller"
href: schemas/appinstallerschema/element-s2-appinstaller.md
- name: "s2:AutomaticBackgroundTask"
href: schemas/appinstallerschema/element-s2-automaticbackgroundtask.md
- name: "s2:Bundle"
href: schemas/appinstallerschema/element-s2-bundle.md
- name: "s2:Dependencies"
href: schemas/appinstallerschema/element-s2-dependencies.md
- name: "s2:MainBundle"
href: schemas/appinstallerschema/element-s2-mainbundle.md
- name: "s2:MainPackage"
href: schemas/appinstallerschema/element-s2-mainpackage.md
- name: "s2:OnLaunch"
href: schemas/appinstallerschema/element-s2-onlaunch.md
- name: "s2:OptionalPackages"
href: schemas/appinstallerschema/element-s2-optionalpackages.md
- name: "s2:Package"
href: schemas/appinstallerschema/element-s2-package.md
- name: "s2:RelatedPackages"
href: schemas/appinstallerschema/element-s2-relatedpackages.md
- name: "s2:UpdateSettings"
href: schemas/appinstallerschema/element-s2-updatesettings.md
- name: "s3:AppInstaller"
href: schemas/appinstallerschema/element-s3-appinstaller.md
- name: "s3:AutomaticBackgroundTask"
href: schemas/appinstallerschema/element-s3-automaticbackgroundtask.md
- name: "s3:Bundle"
href: schemas/appinstallerschema/element-s3-bundle.md
- name: "s3:Dependencies"
href: schemas/appinstallerschema/element-s3-dependencies.md
- name: "s3:ForceUpdateFromAnyVersion"
href: schemas/appinstallerschema/element-s3-forceupdatefromanyversion.md
- name: "s3:MainBundle"
href: schemas/appinstallerschema/element-s3-mainbundle.md
- name: "s3:MainPackage"
href: schemas/appinstallerschema/element-s3-mainpackage.md
- name: "s3:MainPackageType"
href: schemas/appinstallerschema/element-s3-mainpackagetype.md
- name: "s3:OnLaunch"
href: schemas/appinstallerschema/element-s3-onlaunch.md
- name: "s3:OptionalPackages"
href: schemas/appinstallerschema/element-s3-optionalpackages.md
- name: "s3:Package"
href: schemas/appinstallerschema/element-s3-package.md
- name: "s3:RelatedPackages"
href: schemas/appinstallerschema/element-s3-relatedpackages.md
- name: "s3:UpdateSettings"
href: schemas/appinstallerschema/element-s3-updatesettings.md
- name: "s4:AppInstaller"
href: schemas/appinstallerschema/element-s4-appinstaller.md
- name: "s4:AutomaticBackgroundTask"
href: schemas/appinstallerschema/element-s4-automaticbackgroundtask.md
- name: "s4:Bundle"
href: schemas/appinstallerschema/element-s4-bundle.md
- name: "s4:Dependencies"
href: schemas/appinstallerschema/element-s4-dependencies.md
- name: "s4:ForceUpdateFromAnyVersion"
href: schemas/appinstallerschema/element-s4-forceupdatefromanyversion.md
- name: "s4:MainBundle"
href: schemas/appinstallerschema/element-s4-mainbundle.md
- name: "s4:MainPackage"
href: schemas/appinstallerschema/element-s4-mainpackage.md
- name: "s4:MainPackageType"
href: schemas/appinstallerschema/element-s4-mainpackagetype.md
- name: "s4:OnLaunch"
href: schemas/appinstallerschema/element-s4-onlaunch.md
- name: "s4:OptionalPackages"
href: schemas/appinstallerschema/element-s4-optionalpackages.md
- name: "s4:Package"
href: schemas/appinstallerschema/element-s4-package.md
- name: "s4:RelatedPackages"
href: schemas/appinstallerschema/element-s4-relatedpackages.md
- name: "s4:RepairUri"
href: schemas/appinstallerschema/element-s4-repairuri.md
- name: "s4:RepairUris"
href: schemas/appinstallerschema/element-s4-repairuris.md
- name: "s4:UpdateSettings"
href: schemas/appinstallerschema/element-s4-updatesettings.md
- name: "s4:UpdateUri"
href: schemas/appinstallerschema/element-s4-updateuri.md
- name: "s4:UpdateUris"
href: schemas/appinstallerschema/element-s4-updateuris.md
- name: "App package block map"
href: schemas/blockmapschema/app-package-block-map.md
items:
- name: "Package block map schema reference"
href: schemas/blockmapschema/schema-root.md
items:
- name: "Element Hierarchy"
href: schemas/blockmapschema/root-elements.md
items:
- name: "BlockMap"
href: schemas/blockmapschema/element-blockmap.md
- name: "File"
href: schemas/blockmapschema/element-file.md
- name: "Block"
href: schemas/blockmapschema/element-block.md
- name: "App package manifest"
href: schemas/appxpackage/appx-package-manifest.md
items:
- name: "Windows 10 package manifest schema reference"
href: schemas/appxpackage/uapmanifestschema/schema-root.md
items:
- name: "What's different in Windows 10"
href: schemas/appxpackage/uapmanifestschema/what-s-changed-in-windows-10.md
- name: "Extensions in the package manifest schema"
href: schemas/appxpackage/uapmanifestschema/extensions.md
- name: "Macros in the package manifest schema"
href: schemas/appxpackage/uapmanifestschema/macros.md
- name: "App package manifest schema elements"
href: schemas/appxpackage/uapmanifestschema/schema-elements.md
items:
- name: "Element Hierarchy"
href: schemas/appxpackage/uapmanifestschema/root-elements.md
- name: "ActivatableClass (in InProcessServer)"
href: schemas/appxpackage/uapmanifestschema/element-activatableclass.md
- name: "ActivatableClass (in OutOfProcessServer)"
href: schemas/appxpackage/uapmanifestschema/element-1-activatableclass.md
- name: "ActivatableClassAttribute (in InProcessServer)"
href: schemas/appxpackage/uapmanifestschema/element-activatableclassattribute.md
- name: "ActivatableClassAttribute (in OutOfProcessServer)"
href: schemas/appxpackage/uapmanifestschema/element-1-activatableclassattribute.md
- name: "Application"
href: schemas/appxpackage/uapmanifestschema/element-application.md
- name: "Applications"
href: schemas/appxpackage/uapmanifestschema/element-applications.md
- name: "Arguments"
href: schemas/appxpackage/uapmanifestschema/element-arguments.md
- name: "BackgroundTasks"
href: schemas/appxpackage/uapmanifestschema/element-backgroundtasks.md
- name: "Capabilities"
href: schemas/appxpackage/uapmanifestschema/element-capabilities.md
- name: "Capability"
href: schemas/appxpackage/uapmanifestschema/element-capability.md
- name: "Certificate"
href: schemas/appxpackage/uapmanifestschema/element-certificate.md
- name: "Certificates"
href: schemas/appxpackage/uapmanifestschema/element-certificates.md
- name: "cloudFiles:BannersHandler"
href: schemas/appxpackage/uapmanifestschema/element-cloudfiles-bannershandler.md
- name: "cloudFiles:CloudFiles"
href: schemas/appxpackage/uapmanifestschema/element-cloudfiles-cloudfiles.md
- name: "cloudFiles:CloudFilesContextMenus"
href: schemas/appxpackage/uapmanifestschema/element-cloudfiles-cloudfilescontextmenus.md
- name: "cloudFiles:ContentUriSource"
href: schemas/appxpackage/uapmanifestschema/element-cloudfiles-contenturisource.md
- name: "cloudFiles:CustomStateHandler"
href: schemas/appxpackage/uapmanifestschema/element-cloudfiles-customstatehandler.md
- name: "cloudFiles:DesktopIconOverlayHandler"
href: schemas/appxpackage/uapmanifestschema/element-cloudfiles-desktopiconoverlayhandler.md
- name: "cloudFiles:DesktopIconOverlayHandlers"
href: schemas/appxpackage/uapmanifestschema/element-cloudfiles-desktopiconoverlayhandlers.md
- name: "cloudFiles:ExtendedPropertyHandler"
href: schemas/appxpackage/uapmanifestschema/element-cloudfiles-extendedpropertyhandler.md
- name: "cloudFiles:Extension"
href: schemas/appxpackage/uapmanifestschema/element-cloudfiles-extension.md
- name: "cloudFiles:ThumbnailProviderHandler"
href: schemas/appxpackage/uapmanifestschema/element-cloudfiles-thumbnailproviderhandler.md
- name: "cloudFiles:Verb"
href: schemas/appxpackage/uapmanifestschema/element-cloudfiles-verb.md
- name: "cloudFiles2:StorageProviderStatusUISourceFactory"
href: schemas/appxpackage/uapmanifestschema/element-cloudfiles2-storageproviderstatusuisourcefactory.md
- name: "com:Aspect (in ExeServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-aspect.md
- name: "com:Aspect (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-aspect.md
- name: "com:Class (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogateserver-class.md
- name: "com:Class (in ExeServer)"
href: schemas/appxpackage/uapmanifestschema/element-com-exeserver-class.md
- name: "com:ComInterface"
href: schemas/appxpackage/uapmanifestschema/element-com-cominterface.md
- name: "com:ComServer"
href: schemas/appxpackage/uapmanifestschema/element-com-comserver.md
- name: "com:Conversion (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-conversion.md
- name: "com:Conversion (in ExeServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-conversion.md
- name: "com:DataFormat (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-dataformat.md
- name: "com:DataFormat (in ExeServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-dataformat.md
- name: "com:DataFormats (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-dataformats.md
- name: "com:DataFormats (in ExeServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-dataformats.md
- name: "com:DefaultIcon (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-defaulticon.md
- name: "com:DefaultIcon (in ExeServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-defaulticon.md
- name: "com:ExeServer"
href: schemas/appxpackage/uapmanifestschema/element-com-exeserver.md
- name: "com:Extension"
href: schemas/appxpackage/uapmanifestschema/element-com-extension.md
- name: "com:Format (in SurrogateServer/Class, in com:ReadWritable)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-rwformat.md
- name: "com:Format (in ExeServer/Class, in com:ReadWritable)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-rwformat.md
- name: "com:Format (in ExeServer/Class, in com:Readable)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-rformat.md
- name: "com:Format (in SurrogateServer/Class, in com:Readable)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-rformat.md
- name: "com:ImplementedCategories (in ExeServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-ImplementedCategories.md
- name: "com:ImplementedCategories (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-ImplementedCategories.md
- name: "com:ImplementedCategory (in ExeServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-ImplementedCategory.md
- name: "com:ImplementedCategory (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-ImplementedCategory.md
- name: "com:Interface"
href: schemas/appxpackage/uapmanifestschema/element-com-interface.md
- name: "com:MiscStatus (in ExeServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-miscstatus.md
- name: "com:MiscStatus (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-miscstatus.md
- name: "com:ProgId"
href: schemas/appxpackage/uapmanifestschema/element-com-progid.md
- name: "com:ProxyStub"
href: schemas/appxpackage/uapmanifestschema/element-com-proxystub.md
- name: "com:Readable (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-readable.md
- name: "com:Readable (in ExeServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-readable.md
- name: "com:ReadWritable (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-readwritable.md
- name: "com:ReadWritable (in ExeServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-readwritable.md
- name: "com:SurrogateServer"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogateserver.md
- name: "com:ToolboxBitmap32 (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-toolboxbitmap32.md
- name: "com:ToolboxBitmap32 (in ExeServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-toolboxbitmap32.md
- name: "com:TreatAsClass"
href: schemas/appxpackage/uapmanifestschema/element-com-treatasclass.md
- name: "com:TypeLib (in ComInterface)"
href: schemas/appxpackage/uapmanifestschema/element-com-typelib.md
- name: "com:TypeLib (in Interface)"
href: schemas/appxpackage/uapmanifestschema/element-com-interface-typelib.md
- name: "com:Verb (in ExeServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-verb.md
- name: "com:Verb (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-verb.md
- name: "com:Verbs (in ExeServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-exe-verbs.md
- name: "com:Verbs (in SurrogateServer/Class)"
href: schemas/appxpackage/uapmanifestschema/element-com-surrogate-verbs.md
- name: "com:Version"
href: schemas/appxpackage/uapmanifestschema/element-com-version.md
- name: "com:Win32Path"
href: schemas/appxpackage/uapmanifestschema/element-com-win32path.md
- name: "com:Win64Path"
href: schemas/appxpackage/uapmanifestschema/element-com-win64path.md
- name: "com2:ComInterface"
href: schemas/appxpackage/uapmanifestschema/element-com2-cominterface.md
- name: "com2:ComServer"
href: schemas/appxpackage/uapmanifestschema/element-com2-comserver.md
- name: "com2:Extension"
href: schemas/appxpackage/uapmanifestschema/element-com2-extension.md
- name: "com2:ProxyStubDll"
href: schemas/appxpackage/uapmanifestschema/element-com2-proxystubdll.md
- name: "com3:Class"
href: schemas/appxpackage/uapmanifestschema/element-com3-class.md
- name: "com3:ExeServer"
href: schemas/appxpackage/uapmanifestschema/element-com3-exeserver.md
- name: "com3:ProgId"
href: schemas/appxpackage/uapmanifestschema/element-com3-progid.md
- name: "com3:ServiceServer"
href: schemas/appxpackage/uapmanifestschema/element-com3-serviceserver.md
- name: "com3:SurrogateServer"
href: schemas/appxpackage/uapmanifestschema/element-com3-surrogateserver.md
- name: "com3:TreatAsClass"
href: schemas/appxpackage/uapmanifestschema/element-com3-treatasclass.md
- name: "com4:Aspect"
href: schemas/appxpackage/uapmanifestschema/element-com4-aspect.md
- name: "com4:Class"
href: schemas/appxpackage/uapmanifestschema/element-com4-class.md
- name: "com4:Class (in ExeServer)"
href: schemas/appxpackage/uapmanifestschema/element-com4-exeserver-class.md
- name: "com4:Class (in InProcessHandler)"
href: schemas/appxpackage/uapmanifestschema/element-com4-inprocesshandler-class.md
- name: "com4:Class (in InProcessServer)"
href: schemas/appxpackage/uapmanifestschema/element-com4-inprocessserver-class.md
- name: "com4:Class (in ManagedInProcessServer)"
href: schemas/appxpackage/uapmanifestschema/element-com4-managedinprocessserver-class.md
- name: "com4:Class (in SurrogateServer)"
href: schemas/appxpackage/uapmanifestschema/element-com4-surrogateserver-class.md
- name: "com4:ClassReference (in ExeServer)"
href: schemas/appxpackage/uapmanifestschema/element-com4-exeserver-classreference.md
- name: "com4:ClassReference (in InProcessHandler)"
href: schemas/appxpackage/uapmanifestschema/element-com4-inprocesshandler-classreference.md
- name: "com4:ClassReference (in InProcessServer)"
href: schemas/appxpackage/uapmanifestschema/element-com4-inprocessserver-classreference.md
- name: "com4:ClassReference (in ManagedInProcessServer)"
href: schemas/appxpackage/uapmanifestschema/element-com4-managedinprocessserver-classreference.md
- name: "com4:ClassReference (in SurrogateServer)"
href: schemas/appxpackage/uapmanifestschema/element-com4-surrogateserver-classreference.md
- name: "com4:ComInterface"
href: schemas/appxpackage/uapmanifestschema/element-com4-cominterface.md
- name: "com4:ComServer"
href: schemas/appxpackage/uapmanifestschema/element-com4-comserver.md
- name: "com4:Conversion"
href: schemas/appxpackage/uapmanifestschema/element-com4-conversion.md
- name: "com4:DataFormat"
href: schemas/appxpackage/uapmanifestschema/element-com4-dataformat.md
- name: "com4:DataFormats"
href: schemas/appxpackage/uapmanifestschema/element-com4-dataformats.md
- name: "com4:DefaultIcon"
href: schemas/appxpackage/uapmanifestschema/element-com4-defaulticon.md
- name: "com4:ExeServer"
href: schemas/appxpackage/uapmanifestschema/element-com4-exeserver.md
- name: "com4:Extension"
href: schemas/appxpackage/uapmanifestschema/element-com4-extension.md
- name: "com4:Format"
href: schemas/appxpackage/uapmanifestschema/element-com4-format.md
- name: "com4:ImplementedCategories"
href: schemas/appxpackage/uapmanifestschema/element-com4-implementedcategories.md
- name: "com4:ImplementedCategory"
href: schemas/appxpackage/uapmanifestschema/element-com4-implementedcategory.md
- name: "com4:InProcessHandler"
href: schemas/appxpackage/uapmanifestschema/element-com4-inprocesshandler.md
- name: "com4:InProcessHandlerDll"
href: schemas/appxpackage/uapmanifestschema/element-com4-inprocesshandlerdll.md
- name: "com4:InProcessServer"
href: schemas/appxpackage/uapmanifestschema/element-com4-inprocessserver.md
- name: "com4:InProcessServerClassReference"
href: schemas/appxpackage/uapmanifestschema/element-com4-inprocessserverclassreference.md
- name: "com4:InProcessServerDll"
href: schemas/appxpackage/uapmanifestschema/element-com4-inprocessserverdll.md
- name: "com4:Interface"
href: schemas/appxpackage/uapmanifestschema/element-com4-interface.md
- name: "com4:ManagedInProcessServer"
href: schemas/appxpackage/uapmanifestschema/element-com4-managedinprocessserver.md
- name: "com4:MiscStatus"
href: schemas/appxpackage/uapmanifestschema/element-com4-miscstatus.md
- name: "com4:ProgId"
href: schemas/appxpackage/uapmanifestschema/element-com4-progid.md
- name: "com4:ProxyStub"
href: schemas/appxpackage/uapmanifestschema/element-com4-proxystub.md
- name: "com4:ProxyStubDll"
href: schemas/appxpackage/uapmanifestschema/element-com4-proxystubdll.md
- name: "com4:Readable"
href: schemas/appxpackage/uapmanifestschema/element-com4-readable.md
- name: "com4:ReadWritable"
href: schemas/appxpackage/uapmanifestschema/element-com4-readwritable.md
- name: "com4:ServiceServer"
href: schemas/appxpackage/uapmanifestschema/element-com4-serviceserver.md
- name: "com4:SurrogateServer"
href: schemas/appxpackage/uapmanifestschema/element-com4-surrogateserver.md
- name: "com4:ToolboxBitmap32"
href: schemas/appxpackage/uapmanifestschema/element-com4-toolboxbitmap32.md
- name: "com4:TreatAsClass"
href: schemas/appxpackage/uapmanifestschema/element-com4-treatasclass.md
- name: "com4:TypeLib"
href: schemas/appxpackage/uapmanifestschema/element-com4-typelib.md
- name: "com4:TypeLib (in Class)"
href: schemas/appxpackage/uapmanifestschema/element-com4-class-typelib.md
- name: "com4:TypeLib (in Interface)"
href: schemas/appxpackage/uapmanifestschema/element-com4-interface-typelib.md
- name: "com4:Verb"
href: schemas/appxpackage/uapmanifestschema/element-com4-verb.md
- name: "com4:Verbs"
href: schemas/appxpackage/uapmanifestschema/element-com4-verbs.md
- name: "com4:Version"
href: schemas/appxpackage/uapmanifestschema/element-com4-version.md
- name: "com4:Win32Path"
href: schemas/appxpackage/uapmanifestschema/element-com4-win32path.md
- name: "com4:Win64Path"
href: schemas/appxpackage/uapmanifestschema/element-com4-win64path.md
- name: "com5:Aspect"
href: schemas/appxpackage/uapmanifestschema/element-com5-aspect.md
- name: "com5:Class (in InProcessHandler)"
href: schemas/appxpackage/uapmanifestschema/element-com5-inprocesshandler-class.md
- name: "com5:Class (in InProcessServer)"
href: schemas/appxpackage/uapmanifestschema/element-com5-inprocessserver-class.md
- name: "com5:ClassReference (in InProcessHandler)"
href: schemas/appxpackage/uapmanifestschema/element-com5-inprocesshandler-classreference.md
- name: "com5:ClassReference (in InProcessServer)"
href: schemas/appxpackage/uapmanifestschema/element-com5-inprocessserver-classreference.md
- name: "com5:Conversion"
href: schemas/appxpackage/uapmanifestschema/element-com5-conversion.md
- name: "com5:DataFormat"
href: schemas/appxpackage/uapmanifestschema/element-com5-dataformat.md
- name: "com5:DataFormats"
href: schemas/appxpackage/uapmanifestschema/element-com5-dataformats.md
- name: "com5:DefaultIcon"
href: schemas/appxpackage/uapmanifestschema/element-com5-defaulticon.md
- name: "com5:Format"
href: schemas/appxpackage/uapmanifestschema/element-com5-format.md
- name: "com5:ImplementedCategories"
href: schemas/appxpackage/uapmanifestschema/element-com5-implementedcategories.md
- name: "com5:ImplementedCategory"
href: schemas/appxpackage/uapmanifestschema/element-com5-implementedcategory.md
- name: "com5:InProcessHandler"
href: schemas/appxpackage/uapmanifestschema/element-com5-inprocesshandler.md
- name: "com5:InProcessHandlerDll"
href: schemas/appxpackage/uapmanifestschema/element-com5-inprocesshandlerdll.md
- name: "com5:InProcessServer"
href: schemas/appxpackage/uapmanifestschema/element-com5-inprocessserver.md
- name: "com5:InProcessServerDll"
href: schemas/appxpackage/uapmanifestschema/element-com5-inprocessserverdll.md
- name: "com5:MiscStatus"
href: schemas/appxpackage/uapmanifestschema/element-com5-miscstatus.md
- name: "com5:Readable"
href: schemas/appxpackage/uapmanifestschema/element-com5-readable.md
- name: "com5:ReadWritable"
href: schemas/appxpackage/uapmanifestschema/element-com5-readwritable.md
- name: "com5:ToolboxBitmap32"
href: schemas/appxpackage/uapmanifestschema/element-com5-toolboxbitmap32.md
- name: "com5:TypeLib"
href: schemas/appxpackage/uapmanifestschema/element-com5-typelib.md
- name: "com5:Verb"
href: schemas/appxpackage/uapmanifestschema/element-com5-verb.md
- name: "com5:Verbs"
href: schemas/appxpackage/uapmanifestschema/element-com5-verbs.md
- name: "Dependencies"
href: schemas/appxpackage/uapmanifestschema/element-dependencies.md
- name: "deployment:DeploymentExtensionHandler"
href: schemas/appxpackage/uapmanifestschema/element-deployment-deploymentextensionhandler.md
- name: "deployment:Extension"
href: schemas/appxpackage/uapmanifestschema/element-deployment-extension.md
- name: "deployment:File"
href: schemas/appxpackage/uapmanifestschema/element-deployment-file.md
- name: "deployment:Files"
href: schemas/appxpackage/uapmanifestschema/element-deployment-files.md
- name: "Description"
href: schemas/appxpackage/uapmanifestschema/element-description.md
- name: "desktop:ExecutionAlias"
href: schemas/appxpackage/uapmanifestschema/element-desktop-executionalias.md
- name: "desktop:Extension"
href: schemas/appxpackage/uapmanifestschema/element-desktop-extension.md
- name: "desktop:FullTrustProcess"
href: schemas/appxpackage/uapmanifestschema/element-desktop-fulltrustprocess.md
- name: "desktop:ParameterGroup"
href: schemas/appxpackage/uapmanifestschema/element-desktop-parametergroup.md
- name: "desktop:SearchProtocolHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop-searchprotocolhandler.md
- name: "desktop:StartupTasks"
href: schemas/appxpackage/uapmanifestschema/element-desktop-startuptasks.md
- name: "desktop:ToastNotificationActivation"
href: schemas/appxpackage/uapmanifestschema/element-desktop-toastnotificationactivation.md
- name: "desktop2:AppPrinter"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-appprinter.md
- name: "desktop2:DesktopEventLogging"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-desktopeventlogging.md
- name: "desktop2:DesktopPreviewHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-DesktopPreviewHandler.md
- name: "desktop2:DesktopPropertyHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-desktoppropertyhandler.md
- name: "desktop2:EventMessageFiles"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-eventmessagefiles.md
- name: "desktop2:Extension (in Package/Extensions)"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-package-extension.md
- name: "desktop2:Extension (in Package/Applications)"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-extension.md
- name: "desktop2:File"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-file.md
- name: "desktop2:FilterExtension"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-filterextension.md
- name: "desktop2:FirewallRules"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-firewallrules.md
- name: "desktop2:OleClass"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-oleclass.md
- name: "desktop2:Rule"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-rule.md
- name: "desktop2:SearchFilterHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-searchfilterhandler.md
- name: "desktop2:SearchPropertyHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-searchpropertyhandler.md
- name: "desktop2:ThumbnailHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-thumbnailhandler.md
- name: "desktop2:TypesSupported"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-typessupported.md
- name: "desktop2:TypeSupported"
href: schemas/appxpackage/uapmanifestschema/element-desktop2-typesupported.md
- name: "desktop3:AutoPlayHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop3-autoplayhandler.md
- name: "desktop3:BannersHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop3-BannersHandler.md
- name: "desktop3:CloudFiles"
href: schemas/appxpackage/uapmanifestschema/element-desktop3-cloudfiles.md
- name: "desktop3:CloudFilesContextMenus"
href: schemas/appxpackage/uapmanifestschema/element-desktop3-CloudFilesContextMenus.md
- name: "desktop3:Content"
href: schemas/appxpackage/uapmanifestschema/element-desktop3-Content.md
- name: "desktop3:CustomStateHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop3-CustomStateHandler.md
- name: "desktop3:Device"
href: schemas/appxpackage/uapmanifestschema/element-desktop3-Device.md
- name: "desktop3:ExtendedPropertyHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop3-ExtendedPropertyHandler.md
- name: "desktop3:Extension"
href: schemas/appxpackage/uapmanifestschema/element-desktop3-extension.md
- name: "desktop3:InvokeAction"
href: schemas/appxpackage/uapmanifestschema/element-desktop3-InvokeAction.md
- name: "desktop3:ThumbnailProviderHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop3-ThumbnailProviderHandler.md
- name: "desktop3:Verb"
href: schemas/appxpackage/uapmanifestschema/element-desktop3-verb.md
- name: "desktop4:ContentUriSource"
href: schemas/appxpackage/uapmanifestschema/element-desktop4-ContentUriSource.md
- name: "desktop4:DesktopIconOverlayHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop4-DesktopIconOverlayHandler.md
- name: "desktop4:DesktopIconOverlayHandlers"
href: schemas/appxpackage/uapmanifestschema/element-desktop4-DesktopIconOverlayHandlers.md
- name: "desktop4:Extension"
href: schemas/appxpackage/uapmanifestschema/element-desktop4-Extension.md
- name: "desktop4:FileExplorerContextMenus"
href: schemas/appxpackage/uapmanifestschema/element-desktop4-FileExplorerContextMenus.md
- name: "desktop4:ItemType"
href: schemas/appxpackage/uapmanifestschema/element-desktop4-ItemType.md
- name: "desktop4:Verb"
href: schemas/appxpackage/uapmanifestschema/element-desktop4-Verb.md
- name: "desktop5:ItemType"
href: schemas/appxpackage/uapmanifestschema/element-desktop5-itemtype.md
- name: "desktop5:Verb"
href: schemas/appxpackage/uapmanifestschema/element-desktop5-verb.md
- name: "desktop6:BinaryData"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-binarydata.md
- name: "desktop6:CustomInstall"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-custominstall.md
- name: "desktop6:DataItem"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-dataitem.md
- name: "desktop6:Dependencies"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-dependencies.md
- name: "desktop6:DependentService"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-dependentservice.md
- name: "desktop6:Extension (in Package/Applications)"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-extension.md
- name: "desktop6:Extension (in Package/Extensions)"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-package-extension.md
- name: "desktop6:FileSystemWriteVirtualization"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-filesystemwritevirtualization.md
- name: "desktop6:InstallAction"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-installaction.md
- name: "desktop6:InstallActions"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-installactions.md
- name: "desktop6:KeywordAllData"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-keywordalldata.md
- name: "desktop6:KeywordAnyData"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-keywordanydata.md
- name: "desktop6:LevelData"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-leveldata.md
- name: "desktop6:MutablePackageDirectories"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-mutablepackagedirectories.md
- name: "desktop6:MutablePackageDirectory"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-mutablepackagedirectory.md
- name: "desktop6:RegistryWriteVirtualization"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-registrywritevirtualization.md
- name: "desktop6:RepairAction"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-repairaction.md
- name: "desktop6:RepairActions"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-repairactions.md
- name: "desktop6:Service"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-service.md
- name: "desktop6:StringData"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-stringdata.md
- name: "desktop6:TriggerCustom"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-triggercustom.md
- name: "desktop6:TriggerEvents"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-triggerevents.md
- name: "desktop6:UninstallAction"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-uninstallaction.md
- name: "desktop6:UninstallActions"
href: schemas/appxpackage/uapmanifestschema/element-desktop6-uninstallactions.md
- name: "desktop7:ApplicationRegistration"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-applicationregistration.md
- name: "desktop7:AppMigration"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-appmigration.md
- name: "desktop7:AppMigrations"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-appmigrations.md
- name: "desktop7:ApprovedShellExtension"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-approvedshellextension.md
- name: "desktop7:ControlPanelItem"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-controlpanelitem.md
- name: "desktop7:DefaultIcon"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-defaulticon.md
- name: "desktop7:DesktopApp"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-desktopapp.md
- name: "desktop7:DesktopAppMigration"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-desktopappmigration.md
- name: "desktop7:ErrorReporting"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-errorreporting.md
- name: "desktop7:Extension (in Application)"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-extension.md
- name: "desktop7:Extension (in Package)"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-package-extension.md
- name: "desktop7:InfoTip"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-infotip.md
- name: "desktop7:LocalizedString"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-localizedstring.md
- name: "desktop7:Logo"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-logo.md
- name: "desktop7:MailProvider"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-mailprovider.md
- name: "desktop7:ProgId"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-progid.md
- name: "desktop7:RuntimeExceptionHelperModule"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-runtimeexceptionhelpermodule.md
- name: "desktop7:Service"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-service.md
- name: "desktop7:ShadowCopyExcludeFile"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-shadowcopyexcludefile.md
- name: "desktop7:ShadowCopyExcludeFiles"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-shadowcopyexcludefiles.md
- name: "desktop7:Shortcut"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-shortcut.md
- name: "desktop7:SystemFileAssociation"
href: schemas/appxpackage/uapmanifestschema/element-desktop7-systemfileassociation.md
- name: "desktop8:Channel"
href: schemas/appxpackage/uapmanifestschema/element-desktop8-channel.md
- name: "desktop8:Channels"
href: schemas/appxpackage/uapmanifestschema/element-desktop8-channels.md
- name: "desktop8:EventTracing"
href: schemas/appxpackage/uapmanifestschema/element-desktop8-eventtracing.md
- name: "desktop8:Extension"
href: schemas/appxpackage/uapmanifestschema/element-desktop8-extension.md
- name: "desktop8:ImportChannel"
href: schemas/appxpackage/uapmanifestschema/element-desktop8-importchannel.md
- name: "desktop8:Logging"
href: schemas/appxpackage/uapmanifestschema/element-desktop8-logging.md
- name: "desktop8:MutablePackageDirectories"
href: schemas/appxpackage/uapmanifestschema/element-desktop8-mutablepackagedirectories.md
- name: "desktop8:MutablePackageDirectory"
href: schemas/appxpackage/uapmanifestschema/element-desktop8-mutablepackagedirectory.md
- name: "desktop8:Provider"
href: schemas/appxpackage/uapmanifestschema/element-desktop8-provider.md
- name: "desktop8:Publishing"
href: schemas/appxpackage/uapmanifestschema/element-desktop8-publishing.md
- name: "desktop8:UserMutablePackageDirectories"
href: schemas/appxpackage/uapmanifestschema/element-desktop8-usermutablepackagedirectories.md
- name: "desktop8:UserMutablePackageDirectory"
href: schemas/appxpackage/uapmanifestschema/element-desktop8-usermutablepackagedirectory.md
- name: "desktop9:Extension"
href: schemas/appxpackage/uapmanifestschema/element-desktop9-extension.md
- name: "desktop9:ExtensionHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop9-extensionhandler.md
- name: "desktop9:FileExplorerClassicContextMenuHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop9-fileexplorerclassiccontextmenuhandler.md
- name: "desktop9:FileExplorerClassicDragDropContextMenuHandler"
href: schemas/appxpackage/uapmanifestschema/element-desktop9-fileexplorerclassicdragdropcontextmenuhandler.md
- name: desktop10:CustomDesktopEventLog
href: schemas/appxpackage/uapmanifestschema/element-desktop10-customdesktopeventlog.md
- name: desktop10:CustomEventSource
href: schemas/appxpackage/uapmanifestschema/element-desktop10-customeventsource.md
- name: desktop10:DataShortcut
href: schemas/appxpackage/uapmanifestschema/element-desktop10-datashortcut.md
- name: desktop10:DataShortcuts
href: schemas/appxpackage/uapmanifestschema/element-desktop10-datashortcuts.md
- name: desktop10:EventMessageFiles
href: schemas/appxpackage/uapmanifestschema/element-desktop10-eventmessagefiles.md
- name: desktop10:Extension (in Package/Extensions)
href: schemas/appxpackage/uapmanifestschema/element-desktop10-extension.md
- name: desktop10:File
href: schemas/appxpackage/uapmanifestschema/element-desktop10-file.md
- name: desktop10:Folder
href: schemas/appxpackage/uapmanifestschema/element-desktop10-folder.md
- name: desktop10:IconHandler
href: schemas/appxpackage/uapmanifestschema/element-desktop10-iconhandler.md
- name: desktop10:PredefinedTriggerEvents
href: schemas/appxpackage/uapmanifestschema/element-desktop10-predefinedtriggerevents.md
- name: desktop10:SupportedProtocol
href: schemas/appxpackage/uapmanifestschema/element-desktop10-supportedprotocol.md
- name: desktop10:SupportedProtocols
href: schemas/appxpackage/uapmanifestschema/element-desktop10-supportedprotocols.md
- name: desktop10:TypesSupported
href: schemas/appxpackage/uapmanifestschema/element-desktop10-typessupported.md
- name: desktop10:TypeSupported
href: schemas/appxpackage/uapmanifestschema/element-desktop10-typesupported.md
- name: "Device"
href: schemas/appxpackage/uapmanifestschema/element-device.md
- name: "DeviceCapability"
href: schemas/appxpackage/uapmanifestschema/element-devicecapability.md
- name: "DisplayName"
href: schemas/appxpackage/uapmanifestschema/element-displayname.md
- name: "Extension (in Package/Extensions)"
href: schemas/appxpackage/uapmanifestschema/element-extension.md
- name: "Extension (in Application/Extensions)"
href: schemas/appxpackage/uapmanifestschema/element-1-extension.md
- name: "Extensions (in Application)"
href: schemas/appxpackage/uapmanifestschema/element-1-extensions.md
- name: "Extensions (in Package)"
href: schemas/appxpackage/uapmanifestschema/element-extensions.md
- name: "Folder"
href: schemas/appxpackage/uapmanifestschema/element-folder.md
- name: "Framework"
href: schemas/appxpackage/uapmanifestschema/element-framework.md
- name: "Function"
href: schemas/appxpackage/uapmanifestschema/element-function.md
- name: heap:HeapPolicy
href: schemas/appxpackage/uapmanifestschema/element-heap-heappolicy.md
- name: "Identity"
href: schemas/appxpackage/uapmanifestschema/element-identity.md
- name: "InProcessServer"
href: schemas/appxpackage/uapmanifestschema/element-inprocessserver.md
- name: "Instancing"
href: schemas/appxpackage/uapmanifestschema/element-instancing.md
- name: "Interface"
href: schemas/appxpackage/uapmanifestschema/element-interface.md
- name: "Logo"
href: schemas/appxpackage/uapmanifestschema/element-logo.md
- name: "mobile:AowApp"
href: schemas/appxpackage/uapmanifestschema/element-mobile-aowapp-manual.md
- name: "mobile:Capability"
href: schemas/appxpackage/uapmanifestschema/element-mobile-capability-manual.md
- name: "mobile:Extension"
href: schemas/appxpackage/uapmanifestschema/element-mobile-extension-manual.md
- name: "mobile:MobileMultiScreenProperties"
href: schemas/appxpackage/uapmanifestschema/element-mobile-mobilemultiscreenproperties-manual.md
- name: "mp:PhoneIdentity"
href: schemas/appxpackage/uapmanifestschema/element-mp-phoneidentity.md
- name: "OutOfProcessServer"
href: schemas/appxpackage/uapmanifestschema/element-outofprocessserver.md
- name: "Package"
href: schemas/appxpackage/uapmanifestschema/element-package.md
- name: "PackageDependency"
href: schemas/appxpackage/uapmanifestschema/element-packagedependency.md
- name: "Path (in InProcessServer)"
href: schemas/appxpackage/uapmanifestschema/element-path.md
- name: "Path (in OutOfProcessServer)"
href: schemas/appxpackage/uapmanifestschema/element-1-path.md
- name: "Path (in ProxyStub)"
href: schemas/appxpackage/uapmanifestschema/element-2-path.md
- name: "previewappcompat:ProgId"
href: schemas/appxpackage/uapmanifestschema/element-previewappcompat-progid.md
- name: "printSupport:Extension"
href: schemas/appxpackage/uapmanifestschema/element-printsupport-extension.md
- name: "printSupport2:Extension"
href: schemas/appxpackage/uapmanifestschema/element-printsupport2-extension.md
- name: "printSupport2:PrintSupportVirtualPrinter"
href: schemas/appxpackage/uapmanifestschema/element-printsupport2-printsupportvirtualprinter.md
- name: "printSupport2:SupportedFormat"
href: schemas/appxpackage/uapmanifestschema/element-printsupport2-supportedformat.md
- name: "printSupport2:SupportedFormats"
href: schemas/appxpackage/uapmanifestschema/element-printsupport2-supportedformats.md
- name: "Properties"
href: schemas/appxpackage/uapmanifestschema/element-properties.md
- name: "ProxyStub"
href: schemas/appxpackage/uapmanifestschema/element-proxystub.md
- name: "PublisherCacheFolders"
href: schemas/appxpackage/uapmanifestschema/element-publishercachefolders.md
- name: "PublisherDisplayName"
href: schemas/appxpackage/uapmanifestschema/element-publisherdisplayname.md
- name: "rescap:AppLinks"
href: schemas/appxpackage/uapmanifestschema/element-rescap-applinks.md
- name: "rescap:Capability"
href: schemas/appxpackage/uapmanifestschema/element-rescap-capability.md
- name: "rescap:Extension"
href: schemas/appxpackage/uapmanifestschema/element-rescap-extension.md
- name: "rescap:Link"
href: schemas/appxpackage/uapmanifestschema/element-rescap-link.md
- name: "rescap:SearchTerms"
href: schemas/appxpackage/uapmanifestschema/element-rescap-searchterms.md
- name: "rescap:SettingsApp"
href: schemas/appxpackage/uapmanifestschema/element-rescap-settingsapp.md
- name: "rescap:Term"
href: schemas/appxpackage/uapmanifestschema/element-rescap-term.md
- name: "rescap2:Extension"
href: schemas/appxpackage/uapmanifestschema/element-rescap2-extension-manual.md
- name: "rescap3:DesktopApp"
href: schemas/appxpackage/uapmanifestschema/element-rescap3-desktopapp.md
- name: "rescap3:DesktopAppMigration"
href: schemas/appxpackage/uapmanifestschema/element-rescap3-desktopappmigration.md
- name: "rescap3:Extension"
href: schemas/appxpackage/uapmanifestschema/element-rescap3-extension.md
- name: "rescap3:MigrationProgId (in uap:Protocol)"
href: schemas/appxpackage/uapmanifestschema/element-uap-protocol-migrationprogid.md
- name: "rescap3:MigrationProgId (in uap:FileTypeAssociation)"
href: schemas/appxpackage/uapmanifestschema/element-rescap3-migrationprogid.md
- name: "rescap3:MigrationProgIds (in uap:Protocol)"
href: schemas/appxpackage/uapmanifestschema/element-uap-protocol-migrationprogids.md
- name: "rescap3:MigrationProgIds (in uap:FileTypeAssociation)"
href: schemas/appxpackage/uapmanifestschema/element-rescap3-migrationprogids.md
- name: "rescap4:ClassicAppCompatKey"
href: schemas/appxpackage/uapmanifestschema/element-rescap4-ClassicAppCompatKey.md
- name: "rescap4:ClassicAppCompatKeys"
href: schemas/appxpackage/uapmanifestschema/element-rescap4-ClassicAppCompatKeys.md
- name: "rescap4:Extension"
href: schemas/appxpackage/uapmanifestschema/element-rescap4-Extension.md
- name: "rescap4:PrimaryInteropAssemblies"
href: schemas/appxpackage/uapmanifestschema/element-rescap4-primaryInteropAssemblies.md
- name: "rescap4:Redirect"
href: schemas/appxpackage/uapmanifestschema/element-rescap4-redirect.md
- name: "rescap6:ModificationPackage"
href: schemas/appxpackage/uapmanifestschema/element-rescap6-modificationpackage.md
- name: "Resource"
href: schemas/appxpackage/uapmanifestschema/element-resource.md
- name: "ResourcePackage"
href: schemas/appxpackage/uapmanifestschema/element-resourcepackage.md
- name: "Resources"
href: schemas/appxpackage/uapmanifestschema/element-resources.md
- name: "SelectionCriteria"
href: schemas/appxpackage/uapmanifestschema/element-selectioncriteria.md
- name: "TargetDeviceFamily"
href: schemas/appxpackage/uapmanifestschema/element-targetdevicefamily.md
- name: "Task"
href: schemas/appxpackage/uapmanifestschema/element-task.md
- name: "trustedlaunch:TrustedLaunch"
href: schemas/appxpackage/uapmanifestschema/element-trustedlaunch-trustedlaunch.md
- name: "TrustFlags"
href: schemas/appxpackage/uapmanifestschema/element-trustflags.md
- name: "uap:ApplicationContentUriRules"
href: schemas/appxpackage/uapmanifestschema/element-uap-applicationcontenturirules.md
- name: "uap:AppointmentsProvider"
href: schemas/appxpackage/uapmanifestschema/element-uap-appointmentsprovider.md
- name: "uap:AppointmentsProviderLaunchActions"
href: schemas/appxpackage/uapmanifestschema/element-uap-appointmentsproviderlaunchactions.md
- name: "uap:AppService"
href: schemas/appxpackage/uapmanifestschema/element-uap-appservice.md
- name: "uap:AutoPlayContent"
href: schemas/appxpackage/uapmanifestschema/element-uap-autoplaycontent.md
- name: "uap:AutoPlayDevice"
href: schemas/appxpackage/uapmanifestschema/element-uap-autoplaydevice.md
- name: "uap:Capability"
href: schemas/appxpackage/uapmanifestschema/element-uap-capability.md
- name: "uap:Codec"
href: schemas/appxpackage/uapmanifestschema/element-uap-codec.md
- name: "uap:DataFormat"
href: schemas/appxpackage/uapmanifestschema/element-uap-dataformat.md
- name: "uap:DefaultTile"
href: schemas/appxpackage/uapmanifestschema/element-uap-defaulttile.md
- name: "uap:DialProtocol"
href: schemas/appxpackage/uapmanifestschema/element-uap-dialprotocol.md
- name: "uap:DisplayName (in uap:FileTypeAssociation)"
href: schemas/appxpackage/uapmanifestschema/element-uap-displayname.md
- name: "uap:DisplayName (in uap:Protocol)"
href: schemas/appxpackage/uapmanifestschema/element-1-uap-displayname.md
- name: "uap:EditFlags"
href: schemas/appxpackage/uapmanifestschema/element-uap-editflags.md
- name: "uap:Extension"
href: schemas/appxpackage/uapmanifestschema/element-uap-extension.md
- name: "uap:FileOpenPicker"
href: schemas/appxpackage/uapmanifestschema/element-uap-fileopenpicker.md
- name: "uap:FileSavePicker"
href: schemas/appxpackage/uapmanifestschema/element-uap-filesavepicker.md
- name: "uap:FileType (in uap:ShareTarget/uap:SupportedFileTypes)"
href: schemas/appxpackage/uapmanifestschema/element-1-uap-filetype.md
- name: "uap:FileType (in uap:FileTypeAssociation/uap:SupportedFileTypes)"
href: schemas/appxpackage/uapmanifestschema/element-uap-filetype.md
- name: "uap:FileType (in uap:FileSavePicker/uap:SupportedFileTypes)"
href: schemas/appxpackage/uapmanifestschema/element-3-uap-filetype.md
- name: "uap:FileType (in uap:FileOpenPicker/uap:SupportedFileTypes)"
href: schemas/appxpackage/uapmanifestschema/element-2-uap-filetype.md
- name: "uap:FileTypeAssociation"
href: schemas/appxpackage/uapmanifestschema/element-uap-filetypeassociation.md
- name: "uap:InfoTip"
href: schemas/appxpackage/uapmanifestschema/element-uap-infotip.md
- name: "uap:InitialRotationPreference"
href: schemas/appxpackage/uapmanifestschema/element-uap-initialrotationpreference.md
- name: "uap:LaunchAction (in uap:AutoPlayContent)"
href: schemas/appxpackage/uapmanifestschema/element-uap-launchaction.md
- name: "uap:LaunchAction (uap:AutoPlayDevice)"
href: schemas/appxpackage/uapmanifestschema/element-1-uap-launchaction.md
- name: "uap:LaunchAction (in AppointmentsProviderLaunchActions)"
href: schemas/appxpackage/uapmanifestschema/element-2-uap-launchaction.md
- name: "uap:LockScreen"
href: schemas/appxpackage/uapmanifestschema/element-uap-lockscreen.md
- name: "uap:Logo (in uap:Protocol)"
href: schemas/appxpackage/uapmanifestschema/element-1-uap-logo.md
- name: "uap:Logo (in uap:FileTypeAssociation)"
href: schemas/appxpackage/uapmanifestschema/element-uap-logo.md
- name: "uap:ManagedUrls"
href: schemas/appxpackage/uapmanifestschema/element-uap-managedurls.md
- name: "uap:MediaPlayback"
href: schemas/appxpackage/uapmanifestschema/element-uap-mediaplayback.md
- name: "uap:Protocol"
href: schemas/appxpackage/uapmanifestschema/element-uap-protocol.md
- name: "uap:Rotation"
href: schemas/appxpackage/uapmanifestschema/element-uap-rotation.md
- name: "uap:Rule"
href: schemas/appxpackage/uapmanifestschema/element-uap-rule.md
- name: "uap:ShareTarget"
href: schemas/appxpackage/uapmanifestschema/element-uap-sharetarget.md
- name: "uap:ShowNameOnTiles"
href: schemas/appxpackage/uapmanifestschema/element-uap-shownameontiles.md
- name: "uap:ShowOn"
href: schemas/appxpackage/uapmanifestschema/element-uap-showon.md
- name: "uap:SplashScreen"
href: schemas/appxpackage/uapmanifestschema/element-uap-splashscreen.md
- name: "uap:SupportedFileTypes (in uap:FileTypeAssociation)"
href: schemas/appxpackage/uapmanifestschema/element-uap-supportedfiletypes.md
- name: "uap:SupportedFileTypes (in uap:ShareTarget)"
href: schemas/appxpackage/uapmanifestschema/element-1-uap-supportedfiletypes.md
- name: "uap:SupportedFileTypes (in uap:FileOpenPicker)"
href: schemas/appxpackage/uapmanifestschema/element-2-uap-supportedfiletypes.md
- name: "uap:SupportedFileTypes (in uap:FileSavePicker)"
href: schemas/appxpackage/uapmanifestschema/element-3-uap-supportedfiletypes.md
- name: "uap:SupportedUsers"
href: schemas/appxpackage/uapmanifestschema/element-uap-supportedusers.md
- name: "uap:SupportsAnyFileType (in uap:FileSavePicker)"
href: schemas/appxpackage/uapmanifestschema/element-2-uap-supportsanyfiletype.md
- name: "uap:SupportsAnyFileType (in uap:FileOpenPicker)"
href: schemas/appxpackage/uapmanifestschema/element-1-uap-supportsanyfiletype.md
- name: "uap:SupportsAnyFileType (in uap:ShareTarget)"
href: schemas/appxpackage/uapmanifestschema/element-uap-supportsanyfiletype.md
- name: "uap:Task"
href: schemas/appxpackage/uapmanifestschema/element-uap-task.md
- name: "uap:TileUpdate"
href: schemas/appxpackage/uapmanifestschema/element-uap-tileupdate.md
- name: "uap:Url"
href: schemas/appxpackage/uapmanifestschema/element-uap-url.md
- name: "uap:VisualElements"
href: schemas/appxpackage/uapmanifestschema/element-uap-visualelements.md
- name: "uap:VoipCall"
href: schemas/appxpackage/uapmanifestschema/element-uap-voipcall.md
- name: "uap:VoipCallUpgrade"
href: schemas/appxpackage/uapmanifestschema/element-uap-voipcallupgrade.md
- name: "uap:VoipDialPhoneNumber"
href: schemas/appxpackage/uapmanifestschema/element-uap-voipdialphonenumber.md
- name: "uap:WebAccountProvider"
href: schemas/appxpackage/uapmanifestschema/element-uap-webaccountprovider.md
- name: "uap2:Capability"
href: schemas/appxpackage/uapmanifestschema/element-uap2-capability.md
- name: "uap2:Extension"
href: schemas/appxpackage/uapmanifestschema/element-uap2-extension.md
- name: "uap2:ManagedUrls"
href: schemas/appxpackage/uapmanifestschema/element-uap2-managedurls.md
- name: "uap2:SupportedVerbs"
href: schemas/appxpackage/uapmanifestschema/element-uap2-supportedverbs.md
- name: "uap2:Url"
href: schemas/appxpackage/uapmanifestschema/element-uap2-url.md
- name: "uap2:Verb"
href: schemas/appxpackage/uapmanifestschema/element-uap2-verb.md
- name: "uap2:WebAccountProvider"
href: schemas/appxpackage/uapmanifestschema/element-uap2-webaccountprovider.md
- name: "uap3:AppExecutionAlias"
href: schemas/appxpackage/uapmanifestschema/element-uap3-appexecutionalias.md
- name: "uap3:AppExtension"
href: schemas/appxpackage/uapmanifestschema/element-uap3-appextension-manual.md
- name: "uap3:AppExtensionHost"
href: schemas/appxpackage/uapmanifestschema/element-uap3-appextensionhost-manual.md
- name: "uap3:AppointmentDataProvider"
href: schemas/appxpackage/uapmanifestschema/element-uap3-appointmentdataprovider-manual.md
- name: "uap3:AppService"
href: schemas/appxpackage/uapmanifestschema/element-uap3-appservice-manual.md
- name: "uap3:AppUriHandler"
href: schemas/appxpackage/uapmanifestschema/element-uap3-appurihandler-manual.md
- name: "uap3:Capability"
href: schemas/appxpackage/uapmanifestschema/element-uap3-capability-manual.md
- name: "uap3:ContactDataProvider"
href: schemas/appxpackage/uapmanifestschema/element-uap3-contactdataprovider-manual.md
- name: "uap3:EmailDataProvider"
href: schemas/appxpackage/uapmanifestschema/element-uap3-emaildataprovider-manual.md
- name: "uap3:Extension"
href: schemas/appxpackage/uapmanifestschema/element-uap3-extension-manual.md
- name: "uap3:FileTypeAssociations"
href: schemas/appxpackage/uapmanifestschema/element-uap3-filetypeassociations.md
- name: "uap3:Host"
href: schemas/appxpackage/uapmanifestschema/element-uap3-host-manual.md
- name: "uap3:MainPackageDependency"
href: schemas/appxpackage/uapmanifestschema/element-uap3-mainpackagedependency-manual.md
- name: "uap3:Name"
href: schemas/appxpackage/uapmanifestschema/element-uap3-name-manual.md
- name: "uap3:Properties"
href: schemas/appxpackage/uapmanifestschema/element-uap3-properties-manual.md
- name: "uap3:Protocol"
href: schemas/appxpackage/uapmanifestschema/element-uap3-protocol.md
- name: "uap3:Verb"
href: schemas/appxpackage/uapmanifestschema/element-uap3-verb.md