-
Notifications
You must be signed in to change notification settings - Fork 0
/
dnetc.xml
12662 lines (12581 loc) · 257 KB
/
dnetc.xml
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
<?xml version="1.0" encoding="US-ASCII" standalone="yes"?><?xml-stylesheet type="text/xsl" href="msi.xsl" ?><!--
XML Dump of Windows Installer Database
Created with msi2xml
(C) 2001-2002 Daniel Gehriger ([email protected])
--><!DOCTYPE msi [
<!ELEMENT msi (summary,table*)>
<!ATTLIST msi version CDATA #REQUIRED
xmlns:dt CDATA #IMPLIED
msm (yes|no) "no"
codepage CDATA #IMPLIED
compression (MSZIP|LZX|none) "LZX">
<!ELEMENT summary (codepage?,title?,subject?,author?,keywords?,comments?,
template,lastauthor?,revnumber,lastprinted?,
createdtm?,lastsavedtm?,pagecount,wordcount,
charcount?,appname?,security?)>
<!ELEMENT codepage (#PCDATA)>
<!ELEMENT title (#PCDATA)>
<!ELEMENT subject (#PCDATA)>
<!ELEMENT author (#PCDATA)>
<!ELEMENT keywords (#PCDATA)>
<!ELEMENT comments (#PCDATA)>
<!ELEMENT template (#PCDATA)>
<!ELEMENT lastauthor (#PCDATA)>
<!ELEMENT revnumber (#PCDATA)>
<!ELEMENT lastprinted (#PCDATA)>
<!ELEMENT createdtm (#PCDATA)>
<!ELEMENT lastsavedtm (#PCDATA)>
<!ELEMENT pagecount (#PCDATA)>
<!ELEMENT wordcount (#PCDATA)>
<!ELEMENT charcount (#PCDATA)>
<!ELEMENT appname (#PCDATA)>
<!ELEMENT security (#PCDATA)>
<!ELEMENT table (col+,row*)>
<!ATTLIST table
name CDATA #REQUIRED>
<!ELEMENT col (#PCDATA)>
<!ATTLIST col
key (yes|no) #IMPLIED
def CDATA #IMPLIED>
<!ELEMENT row (td+)>
<!ELEMENT td (#PCDATA)>
<!ATTLIST td
href CDATA #IMPLIED
dt:dt (string|bin.base64) #IMPLIED
md5 CDATA #IMPLIED>
]><msi version="2.0" xmlns:dt="urn:schemas-microsoft-com:datatypes" codepage="1252">
<summary>
<codepage>1252</codepage>
<title>dnetc</title>
<subject>distributed computing client</subject>
<author>Distributed Computing Technologies, Inc.</author>
<keywords>distributed computing dnetc bovine cow rc5 ogr</keywords>
<comments>cows are cool!</comments>
<template>Intel;1033</template>
<lastauthor>jlawson</lastauthor>
<revnumber>{6A6F76E9-DF38-46CE-BC67-56C59A37EEAC}</revnumber>
<lastprinted>09/12/2003 23:37</lastprinted>
<createdtm>06/21/1999 02:00</createdtm>
<lastsavedtm>06/13/2005 23:29</lastsavedtm>
<pagecount>200</pagecount>
<wordcount>2</wordcount>
<charcount/>
<appname>Windows Installer</appname>
<security>1</security>
</summary>
<table name="ActionText">
<col key="yes" def="s72">Action</col>
<col def="L0">Description</col>
<col def="L0">Template</col>
<row>
<td>Advertise</td>
<td>Advertising application</td>
<td/>
</row>
<row>
<td>AllocateRegistrySpace</td>
<td>Allocating registry space</td>
<td>Free space: [1]</td>
</row>
<row>
<td>AppSearch</td>
<td>Searching for installed applications</td>
<td>Property: [1], Signature: [2]</td>
</row>
<row>
<td>BindImage</td>
<td>Binding executables</td>
<td>File: [1]</td>
</row>
<row>
<td>CCPSearch</td>
<td>Searching for qualifying products</td>
<td/>
</row>
<row>
<td>CostFinalize</td>
<td>Computing space requirements</td>
<td/>
</row>
<row>
<td>CostInitialize</td>
<td>Computing space requirements</td>
<td/>
</row>
<row>
<td>CreateFolders</td>
<td>Creating folders</td>
<td>Folder: [1]</td>
</row>
<row>
<td>CreateShortcuts</td>
<td>Creating shortcuts</td>
<td>Shortcut: [1]</td>
</row>
<row>
<td>DeleteServices</td>
<td>Deleting services</td>
<td>Service: [1]</td>
</row>
<row>
<td>DuplicateFiles</td>
<td>Creating duplicate files</td>
<td>File: [1], Directory: [9], Size: [6]</td>
</row>
<row>
<td>FileCost</td>
<td>Computing space requirements</td>
<td/>
</row>
<row>
<td>GenerateScript</td>
<td>Generating script operations for action:</td>
<td>[1]</td>
</row>
<row>
<td>InstallAdminPackage</td>
<td>Copying network install files</td>
<td>File: [1], Directory: [9], Size: [6]</td>
</row>
<row>
<td>InstallFiles</td>
<td>Copying new files</td>
<td>File: [1], Directory: [9], Size: [6]</td>
</row>
<row>
<td>InstallODBC</td>
<td>Installing ODBC components</td>
<td/>
</row>
<row>
<td>InstallServices</td>
<td>Installing new services</td>
<td>Service: [2]</td>
</row>
<row>
<td>InstallValidate</td>
<td>Validating install</td>
<td/>
</row>
<row>
<td>LaunchConditions</td>
<td>Evaluating launch conditions</td>
<td/>
</row>
<row>
<td>MoveFiles</td>
<td>Moving files</td>
<td>File: [1], Directory: [9], Size: [6]</td>
</row>
<row>
<td>PatchFiles</td>
<td>Patching files</td>
<td>File: [1], Directory: [2], Size: [3]</td>
</row>
<row>
<td>ProcessComponents</td>
<td>Updating component registration</td>
<td/>
</row>
<row>
<td>PublishComponents</td>
<td>Publishing Qualified Components</td>
<td>Component ID: [1], Qualifier: [2]</td>
</row>
<row>
<td>PublishFeatures</td>
<td>Publishing Product Features</td>
<td>Feature: [1]</td>
</row>
<row>
<td>PublishProduct</td>
<td>Publishing product information</td>
<td/>
</row>
<row>
<td>RMCCPSearch</td>
<td>Searching for qualifying products</td>
<td/>
</row>
<row>
<td>RUNCA_CONFIG_DNETC</td>
<td>Waiting for client configuration to complete before continuing...</td>
<td/>
</row>
<row>
<td>RUNCA_INSTALL_DNETC</td>
<td>Installing client as service</td>
<td/>
</row>
<row>
<td>RUNCA_KILLRUNNINGCLIENTWINDOWS</td>
<td>Stopping running clients</td>
<td/>
</row>
<row>
<td>RUNCA_STOP_DNETC</td>
<td>Stopping running clients</td>
<td/>
</row>
<row>
<td>RUNCA_UNINST_DNETC</td>
<td>Removing client service</td>
<td/>
</row>
<row>
<td>RegisterClassInfo</td>
<td>Registering Class servers</td>
<td>Class Id: [1]</td>
</row>
<row>
<td>RegisterExtensionInfo</td>
<td>Registering extension servers</td>
<td>Extension: [1]</td>
</row>
<row>
<td>RegisterFonts</td>
<td>Registering fonts</td>
<td>Font: [1]</td>
</row>
<row>
<td>RegisterMIMEInfo</td>
<td>Registering MIME info</td>
<td>MIME Content Type: [1], Extension: [2]</td>
</row>
<row>
<td>RegisterProduct</td>
<td>Registering product</td>
<td>[1]</td>
</row>
<row>
<td>RegisterProgIdInfo</td>
<td>Unregistering program identifiers</td>
<td>ProgId: [1]</td>
</row>
<row>
<td>RegisterTypeLibraries</td>
<td>Registering type libraries</td>
<td>LibID: [1]</td>
</row>
<row>
<td>RegisterUser</td>
<td>Registering user</td>
<td>[1]</td>
</row>
<row>
<td>RemoveDuplicateFiles</td>
<td>Removing duplicated files</td>
<td>File: [1], Directory: [9]</td>
</row>
<row>
<td>RemoveEnvironmentStrings</td>
<td>Updating environment strings</td>
<td>Name: [1], Value: [2], Action [3]</td>
</row>
<row>
<td>RemoveFiles</td>
<td>Removing files</td>
<td>File: [1], Directory: [9]</td>
</row>
<row>
<td>RemoveFolders</td>
<td>Removing folders</td>
<td>Folder: [1]</td>
</row>
<row>
<td>RemoveIniValues</td>
<td>Removing INI files entries</td>
<td>File: [1], Section: [2], Key: [3], Value: [4]</td>
</row>
<row>
<td>RemoveODBC</td>
<td>Removing ODBC components</td>
<td/>
</row>
<row>
<td>RemoveRegistryValues</td>
<td>Removing system registry values</td>
<td>Key: [1], Name: [2]</td>
</row>
<row>
<td>RemoveShortcuts</td>
<td>Removing shortcuts</td>
<td>Shortcut: [1]</td>
</row>
<row>
<td>Rollback</td>
<td>Rolling back action:</td>
<td>[1]</td>
</row>
<row>
<td>RollbackCleanup</td>
<td>Finalizing installation and waiting for configuration...</td>
<td/>
</row>
<row>
<td>SelfRegModules</td>
<td>Registering modules</td>
<td>File: [1], Folder: [2]</td>
</row>
<row>
<td>SelfUnregModules</td>
<td>Unregistering modules</td>
<td>File: [1], Folder: [2]</td>
</row>
<row>
<td>SetODBCFolders</td>
<td>Initializing ODBC directories</td>
<td>ODBC Driver [1] forcing folder [2] to [3]</td>
</row>
<row>
<td>StartServices</td>
<td>Starting services</td>
<td>Service: [1]</td>
</row>
<row>
<td>StopServices</td>
<td>Stopping services</td>
<td>Service: [1]</td>
</row>
<row>
<td>UnmoveFiles</td>
<td>Removing moved files</td>
<td>File: [1], Directory: [9]</td>
</row>
<row>
<td>UnpublishComponents</td>
<td>Unpublishing Qualified Components</td>
<td>Component ID: [1], Qualifier: [2]</td>
</row>
<row>
<td>UnpublishFeatures</td>
<td>Unpublishing Product Features</td>
<td>Feature: [1]</td>
</row>
<row>
<td>UnpublishProduct</td>
<td>Unpublishing product information</td>
<td/>
</row>
<row>
<td>UnregisterClassInfo</td>
<td>Unregister Class servers</td>
<td>Class Id: [1]</td>
</row>
<row>
<td>UnregisterExtensionInfo</td>
<td>Unregistering extension servers</td>
<td>Extension: [1]</td>
</row>
<row>
<td>UnregisterFonts</td>
<td>Unregistering fonts</td>
<td>Font: [1]</td>
</row>
<row>
<td>UnregisterMIMEInfo</td>
<td>Unregistering MIME info</td>
<td>MIME Content Type: [1], Extension: [2]</td>
</row>
<row>
<td>UnregisterProgIdInfo</td>
<td>Unregistering program identifiers</td>
<td>ProgId: [1]</td>
</row>
<row>
<td>UnregisterTypeLibraries</td>
<td>Unregistering type libraries</td>
<td>LibID: [1]</td>
</row>
<row>
<td>WriteEnvironmentStrings</td>
<td>Updating environment strings</td>
<td>Name: [1], Value: [2], Action [3]</td>
</row>
<row>
<td>WriteIniValues</td>
<td>Writing INI files values</td>
<td>File: [1], Section: [2], Key: [3], Value: [4]</td>
</row>
<row>
<td>WriteRegistryValues</td>
<td>Writing system registry values</td>
<td>Key: [1], Name: [2], Value: [3]</td>
</row>
</table>
<table name="AdminExecuteSequence">
<col key="yes" def="s72">Action</col>
<col def="S255">Condition</col>
<col def="I2">Sequence</col>
<row>
<td>CostFinalize</td>
<td/>
<td>1000</td>
</row>
<row>
<td>CostInitialize</td>
<td/>
<td>800</td>
</row>
<row>
<td>DIRCA_TARGETDIR</td>
<td>TARGETDIR=""</td>
<td>750</td>
</row>
<row>
<td>FileCost</td>
<td/>
<td>900</td>
</row>
<row>
<td>InstallAdminPackage</td>
<td/>
<td>3900</td>
</row>
<row>
<td>InstallFiles</td>
<td/>
<td>4000</td>
</row>
<row>
<td>InstallFinalize</td>
<td/>
<td>6600</td>
</row>
<row>
<td>InstallInitialize</td>
<td/>
<td>1500</td>
</row>
<row>
<td>InstallValidate</td>
<td/>
<td>1400</td>
</row>
</table>
<table name="AdminUISequence">
<col key="yes" def="s72">Action</col>
<col def="S255">Condition</col>
<col def="I2">Sequence</col>
<row>
<td>AdminFatalErrorForm</td>
<td/>
<td>-3</td>
</row>
<row>
<td>AdminFinishedForm</td>
<td/>
<td>-1</td>
</row>
<row>
<td>AdminMaintenanceForm</td>
<td>Installed<>""</td>
<td>999</td>
</row>
<row>
<td>AdminProgressForm</td>
<td/>
<td>1299</td>
</row>
<row>
<td>AdminResumeForm</td>
<td>Installed="" AND RESUME</td>
<td>998</td>
</row>
<row>
<td>AdminUserExitForm</td>
<td/>
<td>-2</td>
</row>
<row>
<td>AdminWelcomeForm</td>
<td>Installed="" AND NOT RESUME</td>
<td>1001</td>
</row>
<row>
<td>CostFinalize</td>
<td/>
<td>1000</td>
</row>
<row>
<td>CostInitialize</td>
<td/>
<td>800</td>
</row>
<row>
<td>DIRCA_TARGETDIR</td>
<td>TARGETDIR=""</td>
<td>750</td>
</row>
<row>
<td>ExecuteAction</td>
<td/>
<td>1300</td>
</row>
<row>
<td>FileCost</td>
<td/>
<td>900</td>
</row>
</table>
<table name="AdvtExecuteSequence">
<col key="yes" def="s72">Action</col>
<col def="S255">Condition</col>
<col def="I2">Sequence</col>
<row>
<td>CostFinalize</td>
<td/>
<td>1000</td>
</row>
<row>
<td>CostInitialize</td>
<td/>
<td>800</td>
</row>
<row>
<td>CreateShortcuts</td>
<td/>
<td>4500</td>
</row>
<row>
<td>InstallFinalize</td>
<td/>
<td>6600</td>
</row>
<row>
<td>InstallInitialize</td>
<td/>
<td>1500</td>
</row>
<row>
<td>InstallValidate</td>
<td/>
<td>1400</td>
</row>
<row>
<td>MsiPublishAssemblies</td>
<td/>
<td>6250</td>
</row>
<row>
<td>MsiUnpublishAssemblies</td>
<td/>
<td>1650</td>
</row>
<row>
<td>PublishComponents</td>
<td/>
<td>6200</td>
</row>
<row>
<td>PublishFeatures</td>
<td/>
<td>6300</td>
</row>
<row>
<td>PublishProduct</td>
<td/>
<td>6400</td>
</row>
<row>
<td>RegisterClassInfo</td>
<td/>
<td>4600</td>
</row>
<row>
<td>RegisterExtensionInfo</td>
<td/>
<td>4700</td>
</row>
<row>
<td>RegisterMIMEInfo</td>
<td/>
<td>4900</td>
</row>
<row>
<td>RegisterProgIdInfo</td>
<td/>
<td>4800</td>
</row>
</table>
<table name="AdvtUISequence">
<col key="yes" def="s72">Action</col>
<col def="S255">Condition</col>
<col def="I2">Sequence</col>
</table>
<table name="AppSearch">
<col key="yes" def="s72">Property</col>
<col key="yes" def="s72">Signature_</col>
<row>
<td>PERSONAL_SCREEN_SAVER</td>
<td>Signature_reg_personal_saver</td>
</row>
<row>
<td>TARGETDIR</td>
<td>Signature_reg_mru_client</td>
</row>
</table>
<table name="Binary">
<col key="yes" def="s72">Name</col>
<col def="v0">Data</col>
<row>
<td>BannerBitmap.bmp</td>
<td href="streams/Binary.BannerBitmap.bmp" md5="7d1ceeec5743cecdad26afc29cfe103d"/>
</row>
<row>
<td>MsiLib.dll</td>
<td href="streams/Binary.MsiLib.dll" md5="e928a5778354f232e7ee30de15cd7ce8"/>
</row>
<row>
<td>NewFldrBtn.bmp</td>
<td href="streams/Binary.NewFldrBtn.bmp" md5="326a40f5ae0f716a3818531e475678bf"/>
</row>
<row>
<td>UpFldrBtn.bmp</td>
<td href="streams/Binary.UpFldrBtn.bmp" md5="4638b2aa55fbd0fa73bb08181895cbe7"/>
</row>
</table>
<table name="CCPSearch">
<col key="yes" def="s72">Signature_</col>
</table>
<table name="CheckBox">
<col key="yes" def="s72">Property</col>
<col def="S64">Value</col>
<row>
<td>DNETC_RUNCONFIG</td>
<td>1</td>
</row>
</table>
<table name="ComboBox">
<col key="yes" def="s72">Property</col>
<col key="yes" def="i2">Order</col>
<col def="s64">Value</col>
<col def="L64">Text</col>
</table>
<table name="CompLocator">
<col key="yes" def="s72">Signature_</col>
<col def="s38">ComponentId</col>
<col def="I2">Type</col>
</table>
<table name="Component">
<col key="yes" def="s72">Component</col>
<col def="S38">ComponentId</col>
<col def="s72">Directory_</col>
<col def="i2">Attributes</col>
<col def="S255">Condition</col>
<col def="S72">KeyPath</col>
<row>
<td>ComponentClient</td>
<td>{C63D2AF1-8847-2346-1285-A5A9C38DDA97}</td>
<td>TARGETDIR</td>
<td>0</td>
<td>1</td>
<td>dnetc.exe</td>
</row>
<row>
<td>ComponentClientShortcuts</td>
<td>{CD30EE5D-8C2B-4149-ABD8-1B615C02FAEE}</td>
<td>TARGETDIR</td>
<td>4</td>
<td>1</td>
<td>Registry008</td>
</row>
<row>
<td>ComponentDocs</td>
<td>{59A7D992-3A4A-41D1-3ED7-FDB1305A3185}</td>
<td>TARGETDIR</td>
<td>0</td>
<td>1</td>
<td>changes.txt</td>
</row>
<row>
<td>ComponentDocsShortcuts</td>
<td>{621CF062-519B-4B40-850B-39CEC7067D13}</td>
<td>TARGETDIR</td>
<td>4</td>
<td>1</td>
<td>Registry007</td>
</row>
<row>
<td>ComponentRunAllUsersStartup</td>
<td>{56801C97-87FD-4164-AE05-1E9D3F1DF094}</td>
<td>TARGETDIR</td>
<td>4</td>
<td>DNETC_STARTMODE="AllStartup"</td>
<td>Registry006</td>
</row>
<row>
<td>ComponentRunMyUserSaver</td>
<td>{DC4E20A2-92DD-422D-AEE9-3C9DD28035A9}</td>
<td>TARGETDIR</td>
<td>4</td>
<td>DNETC_STARTMODE="MySaver"</td>
<td>Registry002</td>
</row>
<row>
<td>ComponentRunService</td>
<td>{971F97C6-D724-4D25-82B5-4992D6236281}</td>
<td>TARGETDIR</td>
<td>4</td>
<td>DNETC_STARTMODE="Service"</td>
<td>Registry004</td>
</row>
<row>
<td>ComponentSaver</td>
<td>{97C77586-1324-22EF-BABF-9F3DCE288FF3}</td>
<td>TARGETDIR</td>
<td>0</td>
<td>1</td>
<td>dnetc.scr</td>
</row>
<row>
<td>RemoveObsolete</td>
<td>{B1D64897-5037-4893-8C3E-0B4B389CD406}</td>
<td>TARGETDIR</td>
<td>4</td>
<td>1</td>
<td>Registry009</td>
</row>
</table>
<table name="Condition">
<col key="yes" def="s38">Feature_</col>
<col key="yes" def="i2">Level</col>
<col def="S255">Condition</col>
</table>
<table name="Control">
<col key="yes" def="s72">Dialog_</col>
<col key="yes" def="s50">Control</col>
<col def="s20">Type</col>
<col def="i2">X</col>
<col def="i2">Y</col>
<col def="i2">Width</col>
<col def="i2">Height</col>
<col def="I4">Attributes</col>
<col def="S50">Property</col>
<col def="L0">Text</col>
<col def="S50">Control_Next</col>
<col def="L50">Help</col>
<row>
<td>AdminConfirmInstallForm</td>
<td>BannerBmp</td>
<td>Bitmap</td>
<td>0</td>
<td>0</td>
<td>375</td>
<td>52</td>
<td>1</td>
<td/>
<td>[SFF_DefBannerBitmap]</td>
<td>NextButton</td>
<td>|</td>
</row>
<row>
<td>AdminConfirmInstallForm</td>
<td>BannerText</td>
<td>Text</td>
<td>9</td>
<td>9</td>
<td>306</td>
<td>33</td>
<td>65539</td>
<td/>
<td>{\VSI_MS_Sans_Serif16.0_1_0}Confirm Installation</td>
<td/>
<td>|</td>
</row>
<row>
<td>AdminConfirmInstallForm</td>
<td>BodyText1</td>
<td>Text</td>
<td>9</td>
<td>63</td>
<td>354</td>
<td>180</td>
<td>3</td>
<td/>
<td>{\VSI_MS_Sans_Serif13.0_0_0}The installer is ready to install [ProductName] on your computer.
Click "Next" to start the installation.</td>
<td/>
<td>|</td>
</row>
<row>
<td>AdminConfirmInstallForm</td>
<td>CancelButton</td>
<td>PushButton</td>
<td>156</td>
<td>261</td>
<td>66</td>
<td>18</td>
<td>3</td>
<td/>
<td>{\VSI_MS_Sans_Serif13.0_0_0}Cancel</td>
<td>PreviousButton</td>
<td>|</td>
</row>
<row>
<td>AdminConfirmInstallForm</td>
<td>Line1</td>
<td>Line</td>
<td>0</td>
<td>52</td>
<td>375</td>
<td>6</td>
<td>1</td>
<td/>
<td>{\VSI_MS_Sans_Serif13.0_0_0}MsiHorizontalLine</td>
<td/>
<td>|</td>
</row>
<row>
<td>AdminConfirmInstallForm</td>
<td>Line2</td>
<td>Line</td>
<td>0</td>
<td>252</td>
<td>375</td>
<td>6</td>
<td>1</td>
<td/>
<td>{\VSI_MS_Sans_Serif13.0_0_0}MsiHorizontalLine</td>
<td/>
<td>|</td>
</row>
<row>
<td>AdminConfirmInstallForm</td>
<td>NextButton</td>
<td>PushButton</td>
<td>300</td>
<td>261</td>
<td>66</td>
<td>18</td>
<td>3</td>
<td/>
<td>{\VSI_MS_Sans_Serif13.0_0_0}&Next ></td>
<td>CancelButton</td>
<td>|</td>
</row>
<row>
<td>AdminConfirmInstallForm</td>
<td>PreviousButton</td>
<td>PushButton</td>
<td>228</td>
<td>261</td>
<td>66</td>
<td>18</td>
<td>3</td>
<td/>
<td>{\VSI_MS_Sans_Serif13.0_0_0}< &Back</td>
<td>BannerBmp</td>
<td>|</td>
</row>
<row>
<td>AdminFatalErrorForm</td>
<td>BannerBmp</td>
<td>Bitmap</td>
<td>0</td>
<td>0</td>
<td>375</td>
<td>52</td>
<td>1</td>
<td/>
<td>[SFF_DefBannerBitmap]</td>
<td>CloseButton</td>
<td>|</td>
</row>
<row>
<td>AdminFatalErrorForm</td>
<td>BannerText</td>
<td>Text</td>
<td>9</td>
<td>9</td>
<td>306</td>
<td>33</td>
<td>65539</td>
<td/>
<td>{\VSI_MS_Sans_Serif16.0_1_0}Installation Incomplete</td>
<td/>
<td>|</td>
</row>
<row>
<td>AdminFatalErrorForm</td>
<td>BodyTextInstall</td>
<td>Text</td>
<td>9</td>
<td>63</td>
<td>354</td>
<td>180</td>
<td>3</td>
<td/>
<td>{\VSI_MS_Sans_Serif13.0_0_0}The installer was interrupted before [ProductName] could be removed. You need to restart the installer to try again.
Click "Close" to exit.</td>
<td/>
<td>|</td>
</row>
<row>
<td>AdminFatalErrorForm</td>
<td>BodyTextRemove</td>
<td>Text</td>
<td>9</td>
<td>63</td>
<td>354</td>
<td>180</td>
<td>3</td>
<td/>
<td>{\VSI_MS_Sans_Serif13.0_0_0}The installer was interrupted before [ProductName] could be installed. You need to restart the installer to try again.
Click "Close" to exit.</td>
<td/>
<td>|</td>
</row>
<row>
<td>AdminFatalErrorForm</td>
<td>CancelButton</td>
<td>PushButton</td>
<td>156</td>
<td>261</td>
<td>66</td>
<td>18</td>
<td>1</td>
<td/>
<td>{\VSI_MS_Sans_Serif13.0_0_0}Cancel</td>
<td>PreviousButton</td>
<td>|</td>
</row>
<row>
<td>AdminFatalErrorForm</td>
<td>CloseButton</td>
<td>PushButton</td>
<td>300</td>
<td>261</td>
<td>66</td>
<td>18</td>
<td>3</td>
<td/>
<td>{\VSI_MS_Sans_Serif13.0_0_0}&Close</td>
<td>CancelButton</td>
<td>|</td>
</row>
<row>
<td>AdminFatalErrorForm</td>
<td>Line1</td>
<td>Line</td>
<td>0</td>
<td>52</td>
<td>375</td>
<td>6</td>
<td>1</td>
<td/>
<td>{\VSI_MS_Sans_Serif13.0_0_0}MsiHorizontalLine</td>
<td/>
<td>|</td>
</row>
<row>
<td>AdminFatalErrorForm</td>
<td>Line2</td>
<td>Line</td>
<td>0</td>