Subversion Repository Public Repository

ChrisCompleteCodeTrunk

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
<SUFWIProject FileVersion="2.1.1020.0">
<ProjectSettings>
<ProjectType>installer</ProjectType>
<ProductName>ATPP</ProductName>
<ProductVersion>1.0.4</ProductVersion>
<ProductManufacturer>Bits and Bytes Document Solutions</ProductManufacturer>
<ProductID>5508D3E2-AE45-4871-8241-BAC9AD2ABA72</ProductID>
<UpgradeID>AA092013-ECB4-4E8A-9D59-84BB67152B3B</UpgradeID>
<MergeModuleIgnoreTables/>
<Package Id="" Description="Action Tire Payment Processor Installer" Manufacturer="Bits and Bytes Document Solutions" Comments="Package Comments" InstallerVersion="2.0" Platforms="x86" Keywords="" ReadOnly="no" Compressed="yes" AdminImage="no" ShortNames="no" LanguageNeutral="yes" InstallPrivileges="elevated"/>
<ControlPanelSettings NoRepair="no" NoRemove="no" NoModify="yes" SystemComponent="no">
<AboutInfoUrl/>
<ContactInfo/>
<HelpUrl/>
<HelpTelephone/>
<UpdateInfoUrl/>
<Size/>
<ReadmePath/>
<Comments/>
<IconPath>C:\temp\BBDS\ATPP_Code\ATPP_New\cog.ico</IconPath>
</ControlPanelSettings>
<Property Id="ALLUSERS" Value="1" Admin="no" Hidden="no" Secure="no" SuppressModularization="no"/>
<Property Id="MSIFACTUIRMOption" Value="UseRM" Admin="no" Hidden="no" Secure="no" SuppressModularization="no"/>
<Property Id="MSIFACT_INSTALLDIR" Value="INSTALLDIR" Admin="no" Hidden="no" Secure="no" SuppressModularization="no"/>
<UpgradeCodes/>
</ProjectSettings>
<BuildSettings Delimiter=";" LastSelectedBuildStep="Before Build">
<OutputFolder>C:\temp\BBDS\ATPP_Code\ATPP_New_Install</OutputFolder>
<OutputFilenameRoot>setup</OutputFilenameRoot>
<WorkingFolder>C:\Users\davidhopper\Documents\MSI Factory\Output\Action Tire Payment Processor\Build Files</WorkingFolder>
<CompileSeparately>yes</CompileSeparately>
<RemoveOrphanedFolders>yes</RemoveOrphanedFolders>
<VerboseCandle>no</VerboseCandle>
<VerboseLight>no</VerboseLight>
<ContinueAfterValidationErrors>no</ContinueAfterValidationErrors>
<CompilerOptions/>
<LinkerOptions/>
<AskLanguage>yes</AskLanguage>
<BuildLanguage/>
<FilesToCompile CaseSensitive="no" Template="%s_%d"/>
<FilesToLink CaseSensitive="no" Template="%s_%d"/>
<LocalizationFiles CaseSensitive="no" Template="%s_%d"/>
<BuildBootstrapData BootstrapMethod="0">
<CustomConfigFile/>
<CustomExtraCmdLine/>
<MSIIncludeMode>embedded</MSIIncludeMode>
<MSIDownloadURL>http://www.website.com/setup.msi</MSIDownloadURL>
<AllowMSIExtractCmdLine>yes</AllowMSIExtractCmdLine>
<VistaExecutionLevel>requireAdministrator</VistaExecutionLevel>
<UseCustomIcon>no</UseCustomIcon>
<IconPath/>
<StampExecutable>no</StampExecutable>
<FileVersion/>
<ProductVersion/>
<CompanyName/>
<ProductName/>
<InternalName/>
<FileDescription/>
<Copyright/>
<Trademarks/>
<PrivateBuild/>
<SpecialBuild/>
<Comments/>
<Dependencies/>
<BootstrapLanguages>
<BootstrapLanguage Name="English-US" LCIDList="1033,2057,3081,10249,4105,9225,6153,8201,5129,13321,7177,11273" SourceFile="Data\Languages\English.xml" DefaultLanguage="yes"/>
</BootstrapLanguages>
</BuildBootstrapData>
<Fragments>
<FragmentInclude SourceFile="$(var.MSIFactoryFolder)\UI\Default\Common.wxs" CopyToOutputFolder="yes">
<Insertions>
<Insertion InsertType="1">
<TargetXMLPath>/Wix/Product</TargetXMLPath>
<TextToInsert><![CDATA[<UIRef Id="SUFWIUI_Common" />]]></TextToInsert>
</Insertion>
</Insertions>
</FragmentInclude>
<FragmentInclude SourceFile="$(var.MSIFactoryFolder)\UI\Default\ErrorText.wxs" CopyToOutputFolder="yes">
<Insertions>
<Insertion InsertType="1">
<TargetXMLPath>/Wix/Product</TargetXMLPath>
<TextToInsert><![CDATA[<UIRef Id="SUFUI_ErrorText" />]]></TextToInsert>
</Insertion>
</Insertions>
</FragmentInclude>
<FragmentInclude SourceFile="$(var.MSIFactoryFolder)\UI\Default\ProgressText.wxs" CopyToOutputFolder="yes">
<Insertions>
<Insertion InsertType="1">
<TargetXMLPath>/Wix/Product</TargetXMLPath>
<TextToInsert><![CDATA[<UIRef Id="SUFUI_ProgressText" />]]></TextToInsert>
</Insertion>
</Insertions>
</FragmentInclude>
</Fragments>
<CodeSignData>
<Location/>
<SPCFile/>
<PVKFile/>
<TimeStampURL/>
<Description/>
<DescriptionURL/>
<CodeSignSetups>no</CodeSignSetups>
<CodeSigningTool>0</CodeSigningTool>
<Arguments/>
</CodeSignData>
<FileToRunBeforeBuild File="" Args="" WaitForReturn="no"/>
<FileToRunBeforeCompile File="" Args="" WaitForReturn="no"/>
<FileToRunAfterBuild File="" Args="" WaitForReturn="no"/>
</BuildSettings>
<DestinationFolders>
<Folder Name="SourceDir" Id="TARGETDIR">
<Folder Name="BBDS Solutions" Id="Folder_0001">
<Folder Name="Action Tire Payment Processor" Id="INSTALLDIR"/>
</Folder>
<Folder Name="[AppDataFolder]" Id="AppDataFolder"/>
<Folder Name="[DesktopFolder]" Id="DesktopFolder"/>
<Folder Name="[FontsFolder]" Id="FontsFolder"/>
<Folder Name="[ProgramFilesFolder]" Id="ProgramFilesFolder"/>
<Folder Name="[ProgramMenuFolder]" Id="ProgramMenuFolder">
<Folder Name="Action Tire Payment Processor" Id="StartMenuAppFolder"/>
</Folder>
<Folder Name="[StartupFolder]" Id="StartupFolder"/>
<Folder Name="[SystemFolder]" Id="SystemFolder"/>
<Folder Name="[WindowsFolder]" Id="WindowsFolder"/>
</Folder>
</DestinationFolders>
<SetupItemManager>
<BaseDirectory>C:\temp\BBDS\ATPP_New\bin\Release</BaseDirectory>
<ComponentList>
<SetupComponent ID="ATPP_New.application" GUID="EF21C570-E326-49B3-A067-23A724AB91EA" DisableRegReflection="no" Transitive="no" Win64="no" Location="0" NeverOverwrite="no" NeverRemove="no" SharedSystem="no" ComponentDirIsKeyPath="no">
<Condition/>
<FileList>
<SetupItem Type="1" ID="ATPP_New.application" ComponentID="ATPP_New.application" Vital="no" KeyPath="no" IsCompanionFile="no" CompanionFile="">
<Filename>ATPP_New.application</Filename>
<LocalFolder>C:\temp\BBDS\ATPP_Code\ATPP_New\bin\Release</LocalFolder>
<DestinationFolder>INSTALLDIR</DestinationFolder>
<DestinationFilename/>
<OriginalAttributes>yes</OriginalAttributes>
<NewFileAttributes>0</NewFileAttributes>
<VersionData/>
<ShortcutData>
<Description>ATPP_New</Description>
<Comment/>
<WorkingFolder IsProperty="no"/>
<CommandLineArguments/>
<Advertised>no</Advertised>
<HotKey>0</HotKey>
<RunMode>0</RunMode>
<IconMode>0</IconMode>
<IconIndex>0</IconIndex>
<IconFile/>
<UserProfileComponentId/>
<UserProfileComponentGuid>9515FA69-A9A3-4BC6-BE6F-025CD7A1ED3B</UserProfileComponentGuid>
<CustomLocation/>
<Shortcuts/>
</ShortcutData>
<Registration COM="0" RegTTF="no" OverrideFontName="no" TTFName="" MediaSource="1">
<FileAssociations/>
<ProgIDs/>
<COMClasses/>
<AppIDs/>
<TypeLibs/>
<Assembly Type="no"/>
<UserPerimssions/>
</Registration>
</SetupItem>
</FileList>
<RegistryList/>
<INIFileList/>
<ShortcutList/>
<FileOpList/>
<EnvironmentVarList/>
<ServiceList/>
<ODBCList/>
<XMLList/>
<IISList/>
<ReserveCostList/>
<IsolateComponentList/>
</SetupComponent>
<SetupComponent ID="ATPP_New.exe" GUID="5EEF8193-EB80-4125-8EBD-1FAC3D027776" DisableRegReflection="no" Transitive="no" Win64="no" Location="0" NeverOverwrite="no" NeverRemove="no" SharedSystem="no" ComponentDirIsKeyPath="no">
<Condition/>
<FileList>
<SetupItem Type="1" ID="ATPP_New.exe" ComponentID="ATPP_New.exe" Vital="no" KeyPath="no" IsCompanionFile="no" CompanionFile="">
<Filename>ATPP_New.exe</Filename>
<LocalFolder>C:\temp\BBDS\ATPP_Code\ATPP_New\bin\Release\</LocalFolder>
<DestinationFolder>INSTALLDIR</DestinationFolder>
<DestinationFilename/>
<OriginalAttributes>yes</OriginalAttributes>
<NewFileAttributes>0</NewFileAttributes>
<VersionData/>
<ShortcutData>
<Description>Action Tire Payment Processor</Description>
<Comment/>
<WorkingFolder IsProperty="no"/>
<CommandLineArguments/>
<Advertised>no</Advertised>
<HotKey>0</HotKey>
<RunMode>0</RunMode>
<IconMode>0</IconMode>
<IconIndex>0</IconIndex>
<IconFile/>
<UserProfileComponentId>sufupscid_0001</UserProfileComponentId>
<UserProfileComponentGuid>A2341815-6CC0-4EAE-8DDE-EF73C0B265BE</UserProfileComponentGuid>
<CustomLocation>StartupFolder</CustomLocation>
<Shortcuts>
<ShortcutItem>0</ShortcutItem>
<ShortcutItem>1</ShortcutItem>
<ShortcutItem>2</ShortcutItem>
</Shortcuts>
</ShortcutData>
<Registration COM="0" RegTTF="no" OverrideFontName="no" TTFName="" MediaSource="1">
<FileAssociations/>
<ProgIDs/>
<COMClasses/>
<AppIDs/>
<TypeLibs/>
<Assembly Type="no"/>
<UserPerimssions/>
</Registration>
</SetupItem>
</FileList>
<RegistryList/>
<INIFileList/>
<ShortcutList/>
<FileOpList/>
<EnvironmentVarList/>
<ServiceList/>
<ODBCList/>
<XMLList/>
<IISList/>
<ReserveCostList/>
<IsolateComponentList/>
</SetupComponent>
<SetupComponent ID="ATPP_New.exe.manifest" GUID="E41BC799-2F1E-4CFB-83F0-E2021539DDAC" DisableRegReflection="no" Transitive="no" Win64="no" Location="0" NeverOverwrite="no" NeverRemove="no" SharedSystem="no" ComponentDirIsKeyPath="no">
<Condition/>
<FileList>
<SetupItem Type="1" ID="ATPP_New.exe.manifest" ComponentID="ATPP_New.exe.manifest" Vital="no" KeyPath="no" IsCompanionFile="no" CompanionFile="">
<Filename>ATPP_New.exe.manifest</Filename>
<LocalFolder>C:\temp\BBDS\ATPP_Code\ATPP_New\bin\Release\</LocalFolder>
<DestinationFolder>INSTALLDIR</DestinationFolder>
<DestinationFilename/>
<OriginalAttributes>yes</OriginalAttributes>
<NewFileAttributes>0</NewFileAttributes>
<VersionData/>
<ShortcutData>
<Description>ATPP_New.exe</Description>
<Comment/>
<WorkingFolder IsProperty="no"/>
<CommandLineArguments/>
<Advertised>no</Advertised>
<HotKey>0</HotKey>
<RunMode>0</RunMode>
<IconMode>0</IconMode>
<IconIndex>0</IconIndex>
<IconFile/>
<UserProfileComponentId/>
<UserProfileComponentGuid>FE8E5BB9-F391-4B8A-BADB-8B3511A6F388</UserProfileComponentGuid>
<CustomLocation/>
<Shortcuts/>
</ShortcutData>
<Registration COM="0" RegTTF="no" OverrideFontName="no" TTFName="" MediaSource="1">
<FileAssociations/>
<ProgIDs/>
<COMClasses/>
<AppIDs/>
<TypeLibs/>
<Assembly Type="no"/>
<UserPerimssions/>
</Registration>
</SetupItem>
</FileList>
<RegistryList/>
<INIFileList/>
<ShortcutList/>
<FileOpList/>
<EnvironmentVarList/>
<ServiceList/>
<ODBCList/>
<XMLList/>
<IISList/>
<ReserveCostList/>
<IsolateComponentList/>
</SetupComponent>
<SetupComponent ID="ATPP_New.pdb" GUID="5DBC86E3-9AD8-4B9A-B8D0-06E061137DE9" DisableRegReflection="no" Transitive="no" Win64="no" Location="0" NeverOverwrite="no" NeverRemove="no" SharedSystem="no" ComponentDirIsKeyPath="no">
<Condition/>
<FileList>
<SetupItem Type="1" ID="ATPP_New.pdb" ComponentID="ATPP_New.pdb" Vital="no" KeyPath="no" IsCompanionFile="no" CompanionFile="">
<Filename>ATPP_New.pdb</Filename>
<LocalFolder>C:\temp\BBDS\ATPP_Code\ATPP_New\bin\Release\</LocalFolder>
<DestinationFolder>INSTALLDIR</DestinationFolder>
<DestinationFilename/>
<OriginalAttributes>yes</OriginalAttributes>
<NewFileAttributes>0</NewFileAttributes>
<VersionData/>
<ShortcutData>
<Description>ATPP_New</Description>
<Comment/>
<WorkingFolder IsProperty="no"/>
<CommandLineArguments/>
<Advertised>no</Advertised>
<HotKey>0</HotKey>
<RunMode>0</RunMode>
<IconMode>0</IconMode>
<IconIndex>0</IconIndex>
<IconFile/>
<UserProfileComponentId/>
<UserProfileComponentGuid>718E9CBA-D133-4E50-9C34-2F16B223D1E5</UserProfileComponentGuid>
<CustomLocation/>
<Shortcuts/>
</ShortcutData>
<Registration COM="0" RegTTF="no" OverrideFontName="no" TTFName="" MediaSource="1">
<FileAssociations/>
<ProgIDs/>
<COMClasses/>
<AppIDs/>
<TypeLibs/>
<Assembly Type="no"/>
<UserPerimssions/>
</Registration>
</SetupItem>
</FileList>
<RegistryList/>
<INIFileList/>
<ShortcutList/>
<FileOpList/>
<EnvironmentVarList/>
<ServiceList/>
<ODBCList/>
<XMLList/>
<IISList/>
<ReserveCostList/>
<IsolateComponentList/>
</SetupComponent>
<SetupComponent ID="ATPP_New.vshost.exe" GUID="14B7EE06-2B11-4251-ABFC-770DD7AEA259" DisableRegReflection="no" Transitive="no" Win64="no" Location="0" NeverOverwrite="no" NeverRemove="no" SharedSystem="no" ComponentDirIsKeyPath="no">
<Condition/>
<FileList>
<SetupItem Type="1" ID="ATPP_New.vshost.exe" ComponentID="ATPP_New.vshost.exe" Vital="no" KeyPath="no" IsCompanionFile="no" CompanionFile="">
<Filename>ATPP_New.vshost.exe</Filename>
<LocalFolder>C:\temp\BBDS\ATPP_Code\ATPP_New\bin\Release\</LocalFolder>
<DestinationFolder>INSTALLDIR</DestinationFolder>
<DestinationFilename/>
<OriginalAttributes>yes</OriginalAttributes>
<NewFileAttributes>0</NewFileAttributes>
<VersionData/>
<ShortcutData>
<Description>Microsoft Visual Studio 2013 </Description>
<Comment/>
<WorkingFolder IsProperty="no"/>
<CommandLineArguments/>
<Advertised>no</Advertised>
<HotKey>0</HotKey>
<RunMode>0</RunMode>
<IconMode>0</IconMode>
<IconIndex>0</IconIndex>
<IconFile/>
<UserProfileComponentId>sufupscid_0002</UserProfileComponentId>
<UserProfileComponentGuid>F8635FC5-B6B9-4E14-A44E-408097472CBF</UserProfileComponentGuid>
<CustomLocation/>
<Shortcuts>
<ShortcutItem>1</ShortcutItem>
</Shortcuts>
</ShortcutData>
<Registration COM="0" RegTTF="no" OverrideFontName="no" TTFName="" MediaSource="1">
<FileAssociations/>
<ProgIDs/>
<COMClasses/>
<AppIDs/>
<TypeLibs/>
<Assembly Type="no"/>
<UserPerimssions/>
</Registration>
</SetupItem>
</FileList>
<RegistryList/>
<INIFileList/>
<ShortcutList/>
<FileOpList/>
<EnvironmentVarList/>
<ServiceList/>
<ODBCList/>
<XMLList/>
<IISList/>
<ReserveCostList/>
<IsolateComponentList/>
</SetupComponent>
<SetupComponent ID="ATPP_New.vshost.exe.config" GUID="08F558E3-3D1E-462D-B0EA-648336C0176F" DisableRegReflection="no" Transitive="no" Win64="no" Location="0" NeverOverwrite="no" NeverRemove="no" SharedSystem="no" ComponentDirIsKeyPath="no">
<Condition/>
<FileList>
<SetupItem Type="1" ID="ATPP_New.vshost.exe.config" ComponentID="ATPP_New.vshost.exe.config" Vital="no" KeyPath="no" IsCompanionFile="no" CompanionFile="">
<Filename>ATPP_New.vshost.exe.config</Filename>
<LocalFolder>C:\temp\BBDS\ATPP_Code\ATPP_New\bin\Release\</LocalFolder>
<DestinationFolder>INSTALLDIR</DestinationFolder>
<DestinationFilename/>
<OriginalAttributes>yes</OriginalAttributes>
<NewFileAttributes>0</NewFileAttributes>
<VersionData/>
<ShortcutData>
<Description>ATPP_New.vshost.exe</Description>
<Comment/>
<WorkingFolder IsProperty="no"/>
<CommandLineArguments/>
<Advertised>no</Advertised>
<HotKey>0</HotKey>
<RunMode>0</RunMode>
<IconMode>0</IconMode>
<IconIndex>0</IconIndex>
<IconFile/>
<UserProfileComponentId/>
<UserProfileComponentGuid>B87C2F24-E6BD-4AD3-B7C9-21D959C37CC7</UserProfileComponentGuid>
<CustomLocation/>
<Shortcuts/>
</ShortcutData>
<Registration COM="0" RegTTF="no" OverrideFontName="no" TTFName="" MediaSource="1">
<FileAssociations/>
<ProgIDs/>
<COMClasses/>
<AppIDs/>
<TypeLibs/>
<Assembly Type="no"/>
<UserPerimssions/>
</Registration>
</SetupItem>
</FileList>
<RegistryList/>
<INIFileList/>
<ShortcutList/>
<FileOpList/>
<EnvironmentVarList/>
<ServiceList/>
<ODBCList/>
<XMLList/>
<IISList/>
<ReserveCostList/>
<IsolateComponentList/>
</SetupComponent>
<SetupComponent ID="Telerik.Reporting.dll" GUID="49F4C4DF-5F2F-47C7-8A8C-E7FD2DFAC2E9" DisableRegReflection="no" Transitive="no" Win64="no" Location="0" NeverOverwrite="no" NeverRemove="no" SharedSystem="no" ComponentDirIsKeyPath="no">
<Condition/>
<FileList>
<SetupItem Type="1" ID="Telerik.Reporting.dll" ComponentID="Telerik.Reporting.dll" Vital="no" KeyPath="no" IsCompanionFile="no" CompanionFile="">
<Filename>Telerik.Reporting.dll</Filename>
<LocalFolder>C:\temp\BBDS\ATPP_Code\ATPP_New\bin\Release\</LocalFolder>
<DestinationFolder>INSTALLDIR</DestinationFolder>
<DestinationFilename/>
<OriginalAttributes>yes</OriginalAttributes>
<NewFileAttributes>0</NewFileAttributes>
<VersionData/>
<ShortcutData>
<Description>Telerik.Reporting</Description>
<Comment/>
<WorkingFolder IsProperty="no"/>
<CommandLineArguments/>
<Advertised>no</Advertised>
<HotKey>0</HotKey>
<RunMode>0</RunMode>
<IconMode>0</IconMode>
<IconIndex>0</IconIndex>
<IconFile/>
<UserProfileComponentId/>
<UserProfileComponentGuid>E93FF563-55A6-4A80-A12C-A0A93FB2A772</UserProfileComponentGuid>
<CustomLocation/>
<Shortcuts/>
</ShortcutData>
<Registration COM="0" RegTTF="no" OverrideFontName="no" TTFName="" MediaSource="1">
<FileAssociations/>
<ProgIDs/>
<COMClasses/>
<AppIDs/>
<TypeLibs/>
<Assembly Type="no"/>
<UserPerimssions/>
</Registration>
</SetupItem>
</FileList>
<RegistryList/>
<INIFileList/>
<ShortcutList/>
<FileOpList/>
<EnvironmentVarList/>
<ServiceList/>
<ODBCList/>
<XMLList/>
<IISList/>
<ReserveCostList/>
<IsolateComponentList/>
</SetupComponent>
<SetupComponent ID="Telerik.ReportViewer.WinForms.dll" GUID="B1F267D1-DF04-4B50-9FEA-A7D11B626DF8" DisableRegReflection="no" Transitive="no" Win64="no" Location="0" NeverOverwrite="no" NeverRemove="no" SharedSystem="no" ComponentDirIsKeyPath="no">
<Condition/>
<FileList>
<SetupItem Type="1" ID="Telerik.ReportViewer.WinForms." ComponentID="Telerik.ReportViewer.WinForms.dll" Vital="no" KeyPath="no" IsCompanionFile="no" CompanionFile="">
<Filename>Telerik.ReportViewer.WinForms.dll</Filename>
<LocalFolder>C:\temp\BBDS\ATPP_Code\ATPP_New\bin\Release\</LocalFolder>
<DestinationFolder>INSTALLDIR</DestinationFolder>
<DestinationFilename/>
<OriginalAttributes>yes</OriginalAttributes>
<NewFileAttributes>0</NewFileAttributes>
<VersionData/>
<ShortcutData>
<Description>Telerik Reporting</Description>
<Comment/>
<WorkingFolder IsProperty="no"/>
<CommandLineArguments/>
<Advertised>no</Advertised>
<HotKey>0</HotKey>
<RunMode>0</RunMode>
<IconMode>0</IconMode>
<IconIndex>0</IconIndex>
<IconFile/>
<UserProfileComponentId/>
<UserProfileComponentGuid>846387E8-414D-45B1-8313-925AA6B11F81</UserProfileComponentGuid>
<CustomLocation/>
<Shortcuts/>
</ShortcutData>
<Registration COM="0" RegTTF="no" OverrideFontName="no" TTFName="" MediaSource="1">
<FileAssociations/>
<ProgIDs/>
<COMClasses/>
<AppIDs/>
<TypeLibs/>
<Assembly Type="no"/>
<UserPerimssions/>
</Registration>
</SetupItem>
</FileList>
<RegistryList/>
<INIFileList/>
<ShortcutList/>
<FileOpList/>
<EnvironmentVarList/>
<ServiceList/>
<ODBCList/>
<XMLList/>
<IISList/>
<ReserveCostList/>
<IsolateComponentList/>
</SetupComponent>
<SetupComponent ID="ATPP_New.exe.config" GUID="A4073B5D-3C0F-4BE7-8D80-017F31E438DA" DisableRegReflection="no" Transitive="no" Win64="no" Location="0" NeverOverwrite="no" NeverRemove="no" SharedSystem="no" ComponentDirIsKeyPath="no">
<Condition/>
<FileList>
<SetupItem Type="1" ID="ATPP_New.exe.config" ComponentID="ATPP_New.exe.config" Vital="no" KeyPath="no" IsCompanionFile="no" CompanionFile="">
<Filename>ATPP_New.exe.config</Filename>
<LocalFolder>C:\temp\BBDS\ATPP_Code\</LocalFolder>
<DestinationFolder>INSTALLDIR</DestinationFolder>
<DestinationFilename/>
<OriginalAttributes>yes</OriginalAttributes>
<NewFileAttributes>0</NewFileAttributes>
<VersionData/>
<ShortcutData>
<Description>ATPP_New.exe</Description>
<Comment/>
<WorkingFolder IsProperty="no"/>
<CommandLineArguments/>
<Advertised>no</Advertised>
<HotKey>0</HotKey>
<RunMode>0</RunMode>
<IconMode>0</IconMode>
<IconIndex>0</IconIndex>
<IconFile/>
<UserProfileComponentId/>
<UserProfileComponentGuid>ED4C829D-54FD-4B97-82B2-BEA2B31CC0C9</UserProfileComponentGuid>
<CustomLocation/>
<Shortcuts/>
</ShortcutData>
<Registration COM="0" RegTTF="no" OverrideFontName="no" TTFName="" MediaSource="1">
<FileAssociations/>
<ProgIDs/>
<COMClasses/>
<AppIDs/>
<TypeLibs/>
<Assembly Type="no"/>
<UserPerimssions/>
</Registration>
</SetupItem>
</FileList>
<RegistryList/>
<INIFileList/>
<ShortcutList/>
<FileOpList/>
<EnvironmentVarList/>
<ServiceList/>
<ODBCList/>
<XMLList/>
<IISList/>
<ReserveCostList/>
<IsolateComponentList/>
</SetupComponent>
</ComponentList>
</SetupItemManager>
<UIData>
<UISetName>Default</UISetName>
<UISetType>Install Folder</UISetType>
<Screens>
<DialogData Type="UISequence" ID="WelcomeDlg">
<Fragment>
        <UI>
            <Dialog Id="WelcomeDlg" Width="370" Height="270" Title="!(loc.WelcomeDlg_Title)">
                <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.UIButtonNext)">
                	<Publish Event="NewDialog" Value="[MSIFACT_DLG_NEXT]">1</Publish>
                </Control>
                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.UIButtonCancel)">
                    <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
                </Control>
                <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="Image_SideBanner" />
                <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.UIButtonBack)" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.WelcomeDlgDescription)" />
                <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.WelcomeDlgTitle)" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="Support" ID="CancelDlg">
<Fragment>
        <UI>
            <Dialog Id="CancelDlg" Y="10" Width="260" Height="85" Title="!(loc.CancelDlg_Title)">
                <Control Id="No" Type="PushButton" X="132" Y="57" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.UIButtonNo)">
                    <Publish Event="EndDialog" Value="Return">1</Publish>
                </Control>
                <Control Id="Yes" Type="PushButton" X="72" Y="57" Width="56" Height="17" Text="!(loc.UIButtonYes)">
                    <Publish Event="EndDialog" Value="Exit">1</Publish>
                </Control>
                <Control Id="Text" Type="Text" X="48" Y="15" Width="194" Height="30" Text="!(loc.CancelDlgText)" />
                <Control Id="Icon" Type="Icon" X="15" Y="15" Width="24" Height="24" ToolTip="!(loc.CancelDlgIconTooltip)" FixedSize="yes" IconSize="32" Text="Icon_Information" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="Support" ID="BrowseDlg">
<Fragment>
        <UI>
            <Dialog Id="BrowseDlg" Width="370" Height="270" Title="!(loc.BrowseDlg_Title)">
                <Control Id="PathEdit" Type="PathEdit" X="25" Y="202" Width="320" Height="18" Property="_BrowseProperty" Indirect="yes" />
                <Control Id="OK" Type="PushButton" X="240" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.UIButtonOK)">
                    <Publish Event="SetTargetPath" Value="[_BrowseProperty]">1</Publish>
                    <Publish Event="EndDialog" Value="Return">1</Publish>
                </Control>
                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.UIButtonCancel)">
                    <Publish Event="Reset" Value="0">1</Publish>
                    <Publish Event="EndDialog" Value="Return">1</Publish>
                </Control>
                <Control Id="ComboLabel" Type="Text" X="25" Y="58" Width="44" Height="10" TabSkip="no" Text="!(loc.BrowseDlgComboLabel)" />
                <Control Id="DirectoryCombo" Type="DirectoryCombo" X="70" Y="55" Width="220" Height="80" Property="_BrowseProperty" Indirect="yes" Fixed="yes" Remote="yes">
                    <Subscribe Event="IgnoreChange" Attribute="IgnoreChange" />
                </Control>
                <Control Id="Button_Bmp_Up" Type="PushButton" X="298" Y="55" Width="19" Height="19" ToolTip="!(loc.BrowseDlgButton_Bmp_UpTooltip)" Icon="yes" FixedSize="yes" IconSize="16" Text="Icon_Up">
                    <Publish Event="DirectoryListUp" Value="0">1</Publish>
                </Control>
                <Control Id="NewFolder" Type="PushButton" X="325" Y="55" Width="19" Height="19" ToolTip="!(loc.BrowseDlgNewFolderTooltip)" Icon="yes" FixedSize="yes" IconSize="16" Text="Icon_New">
                    <Publish Event="DirectoryListNew" Value="0">1</Publish>
                </Control>
                <Control Id="DirectoryList" Type="DirectoryList" X="25" Y="83" Width="320" Height="98" Property="_BrowseProperty" Sunken="yes" Indirect="yes" TabSkip="no" />
                <Control Id="PathLabel" Type="Text" X="25" Y="190" Width="320" Height="10" TabSkip="no" Text="!(loc.BrowseDlgPathLabel)" />
                <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="Image_TopBanner" />
                <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.BrowseDlgDescription)" />
                <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.BrowseDlgTitle)" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="UISequence" ID="InstallDirDlg">
<Fragment>
        <UI>
            <Dialog Id="InstallDirDlg" Width="370" Height="270" Title="!(loc.InstallDirDlg_Title)">
                <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.UIButtonNext)">
                	<Publish Event="NewDialog" Value="[MSIFACT_DLG_NEXT]">1</Publish>
                </Control>
                <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.UIButtonBack)">
                	<Publish Event="NewDialog" Value="[MSIFACT_DLG_PREV]">1</Publish>
                </Control>
                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.UIButtonCancel)">
                    <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
                </Control>

                <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.InstallDirDlgDescription)" />
                <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.InstallDirDlgTitle)" />
                <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="Image_TopBanner" />
                <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />

                <Control Id="FolderLabel" Type="Text" X="20" Y="60" Width="290" Height="30" Text="!(loc.InstallDirDlgFolderLabel)" />
                <Control Id="Folder" Type="PathEdit" X="20" Y="100" Width="320" Height="18" Property="MSIFACT_INSTALLDIR" Indirect="yes">
					<Publish Event="SetTargetPath" Value="INSTALLDIR">1</Publish>
					<Publish Property="TARGETDIR" Value="[INSTALLDIR]">1</Publish>
				</Control>
				<Control Id="ChangeFolder" Type="PushButton" X="20" Y="120" Width="56" Height="17" Text="!(loc.InstallDirDlgChange)">
                	<Publish Property="_BrowseProperty" Value="[MSIFACT_INSTALLDIR]" Order="1">1</Publish>
            		<Publish Event="SpawnDialog" Value="BrowseDlg" Order="2">1</Publish>
            	</Control>
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="UISequence" ID="VerifyReadyDlgInstall">
<Fragment>
        <UI>
            <Dialog Id="VerifyReadyDlgInstall" Width="370" Height="270" Title="!(loc.VerifyReadyDlg_Title)" TrackDiskSpace="yes">
                <Control Id="Install" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.VerifyReadyDlgInstall)" ElevationShield="yes">
                    <Publish Event="EndDialog" Value="Return"><![CDATA[OutOfDiskSpace <> 1]]></Publish>
                    <Publish Event="SpawnDialog" Value="OutOfRbDiskDlg">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST="P" OR NOT PROMPTROLLBACKCOST)</Publish>
                    <Publish Event="EndDialog" Value="Return">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
                    <Publish Event="EnableRollback" Value="False">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
                    <Publish Event="SpawnDialog" Value="OutOfDiskDlg">(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST="F")</Publish>
                </Control>              

                <Control Id="InstallTitle" Type="Text" X="15" Y="15" Width="300" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.VerifyReadyDlgInstallTitle)">
                </Control>
                <Control Id="InstallText" Type="Text" X="25" Y="70" Width="320" Height="80" Text="!(loc.VerifyReadyDlgInstallText)">
                </Control>
 
                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.UIButtonCancel)">
                    <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
                </Control>
                <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.UIButtonBack)">
                    <Publish Event="NewDialog" Value="[MSIFACT_DLG_PREV]">1</Publish>
                </Control>
                <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="Image_TopBanner" />
                <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="Support" ID="OutOfRbDiskDlg">
<Fragment>
        <UI>
            <Dialog Id="OutOfRbDiskDlg" Width="370" Height="270" Title="!(loc.OutOfRbDiskDlg_Title)">
                <Control Id="No" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.UIButtonNo)">
                    <Publish Event="EndDialog" Value="Return">1</Publish>
                </Control>
                <Control Id="Yes" Type="PushButton" X="240" Y="243" Width="56" Height="17" Text="!(loc.UIButtonYes)">
                    <Publish Event="EnableRollback" Value="False">1</Publish>
                    <Publish Event="EndDialog" Value="Return">1</Publish>
                </Control>
                <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="Image_TopBanner" />
                <Control Id="Text" Type="Text" X="20" Y="53" Width="330" Height="40" Text="!(loc.OutOfRbDiskDlgText)" />
                <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <Control Id="Description" Type="Text" X="20" Y="20" Width="280" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.OutOfRbDiskDlgDescription)" />
                <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.OutOfRbDiskDlgTitle)" />
                <Control Id="VolumeList" Type="VolumeCostList" X="20" Y="159" Width="330" Height="68" Sunken="yes" Fixed="yes" Remote="yes" ShowRollbackCost="yes" Text="!(loc.OutOfRbDiskDlgVolumeList)" />
                <Control Id="Text2" Type="Text" X="20" Y="94" Width="330" Height="62" Text="!(loc.OutOfRbDiskDlgText2)" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="Support" ID="OutOfDiskDlg">
<Fragment>
        <UI>
            <Dialog Id="OutOfDiskDlg" Width="370" Height="270" Title="!(loc.OutOfDiskDlg_Title)">
                <Control Id="OK" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.UIButtonOK)">
                    <Publish Event="EndDialog" Value="Return">1</Publish>
                </Control>
                <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="Image_TopBanner" />
                <Control Id="Text" Type="Text" X="20" Y="53" Width="330" Height="40" Text="!(loc.OutOfDiskDlgText)" />
                <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <Control Id="Description" Type="Text" X="20" Y="20" Width="280" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.OutOfDiskDlgDescription)" />
                <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.OutOfDiskDlgTitle)" />
                <Control Id="VolumeList" Type="VolumeCostList" X="20" Y="100" Width="330" Height="120" Sunken="yes" Fixed="yes" Remote="yes" Text="!(loc.OutOfDiskDlgVolumeList)" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="UISequence" ID="MaintenanceWelcomeDlg">
<Fragment>
        <UI>
            <Dialog Id="MaintenanceWelcomeDlg" Width="370" Height="270" Title="!(loc.MaintenanceWelcomeDlg_Title)">
                <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.UIButtonNext)">
                    <Publish Event="SpawnWaitDialog" Value="WaitForCostingDlg">CostingComplete = 1</Publish>
                    <Publish Event="NewDialog" Value="[MSIFACT_DLG_NEXT]">1</Publish>
                </Control>
                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.UIButtonCancel)">
                    <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
                </Control>
                <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="Image_SideBanner" />
                <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.UIButtonBack)" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.MaintenanceWelcomeDlgTitle)" />
                <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.MaintenanceWelcomeDlgDescription)" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="Support" ID="WaitForCostingDlg">
<Fragment>
        <UI>
            <Dialog Id="WaitForCostingDlg" Y="10" Width="260" Height="85" Title="!(loc.WaitForCostingDlg_Title)">
                <Control Id="Return" Type="PushButton" X="102" Y="57" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WaitForCostingDlgReturn)">
                    <Publish Event="EndDialog" Value="Exit">1</Publish>
                </Control>
                <Control Id="Text" Type="Text" X="48" Y="15" Width="194" Height="30" Text="!(loc.WaitForCostingDlgText)" />
                <Control Id="Icon" Type="Icon" X="15" Y="15" Width="24" Height="24" ToolTip="!(loc.WaitForCostingDlgIconTooltip)" FixedSize="yes" IconSize="32" Text="Icon_Exclamation" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="UISequence" ID="MaintenanceTypeDlgNoChange">
<Fragment>
        <UI>
            <Dialog Id="MaintenanceTypeDlgNoChange" Width="370" Height="270" Title="!(loc.MaintenanceTypeDlg_Title)">
                <Control Id="ChangeButton" Type="PushButton" X="40" Y="65" Width="80" Height="17" Disabled="yes" ToolTip="!(loc.MaintenanceTypeDlgChangeButtonTooltip)" Text="!(loc.MaintenanceTypeDlgChangeButton)">
                </Control>
                <Control Id="ChangeDisabledText" Type="Text" X="60" Y="85" Width="280" Height="20" Text="!(loc.MaintenanceTypeDlgChangeDisabledText)">
                </Control>
                <Control Id="RepairButton" Type="PushButton" X="40" Y="118" Width="80" Height="17" ToolTip="!(loc.MaintenanceTypeDlgRepairButtonTooltip)" Text="!(loc.MaintenanceTypeDlgRepairButton)">
                    <Publish Property="MSIFACTUI_InstallMode" Value="Repair">1</Publish>
                    <Publish Event="NewDialog" Value="[MSIFACT_DLG_NEXT]">1</Publish>
                    <Condition Action="disable">ARPNOREPAIR</Condition>
                </Control>
                <Control Id="RepairText" Type="Text" X="60" Y="138" Width="280" Height="30" Text="!(loc.MaintenanceTypeDlgRepairText)">
                    <Condition Action="hide">ARPNOREPAIR</Condition>
                </Control>
                <Control Id="RepairDisabledText" Type="Text" X="60" Y="138" Width="280" Height="30" Text="!(loc.MaintenanceTypeDlgRepairDisabledText)" Hidden="yes">
                    <Condition Action="show">ARPNOREPAIR</Condition>
                </Control>
                <Control Id="RemoveButton" Type="PushButton" X="40" Y="171" Width="80" Height="17" ToolTip="!(loc.MaintenanceTypeDlgRemoveButtonTooltip)" Text="!(loc.MaintenanceTypeDlgRemoveButton)">
                    <Publish Property="MSIFACTUI_InstallMode" Value="Remove">1</Publish>
                    <Publish Event="NewDialog" Value="[MSIFACT_DLG_NEXT]">1</Publish>
                    <Condition Action="disable">ARPNOREMOVE</Condition>
                </Control>
                <Control Id="RemoveText" Type="Text" X="60" Y="191" Width="280" Height="20" Text="!(loc.MaintenanceTypeDlgRemoveText)">
                    <Condition Action="hide">ARPNOREMOVE</Condition>
                </Control>
                <Control Id="RemoveDisabledText" Type="Text" X="60" Y="191" Width="280" Height="20" Text="!(loc.MaintenanceTypeDlgRemoveDisabledText)" Hidden="yes">
                    <Condition Action="show">ARPNOREMOVE</Condition>
                </Control>
                <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.UIButtonBack)">
                	<Publish Event="NewDialog" Value="[MSIFACT_DLG_PREV]">1</Publish>
                </Control>
                <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.UIButtonNext)" />
                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.UIButtonCancel)" Default="yes">
                    <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
                </Control>
                <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="Image_TopBanner" />
                <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <Control Id="Title" Type="Text" X="15" Y="6" Width="240" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.MaintenanceTypeDlgTitle)" />
                <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.MaintenanceTypeDlgDescription)" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="UISequence" ID="MaintenanceVerifyReadyDlgNoChange">
<Fragment>
        <UI>
            <Dialog Id="MaintenanceVerifyReadyDlgNoChange" Width="370" Height="270" Title="!(loc.VerifyReadyDlg_Title)" TrackDiskSpace="yes">
                <Control Id="Repair" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Hidden="yes" Text="!(loc.VerifyReadyDlgRepair)">
                    <Condition Action="show">MSIFACTUI_InstallMode = "Repair"</Condition>
                    <Condition Action="default">MSIFACTUI_InstallMode = "Repair"</Condition>
                    <Publish Event="ReinstallMode" Value="ecmus"><![CDATA[OutOfDiskSpace <> 1]]></Publish>
                    <Publish Event="Reinstall" Value="All"><![CDATA[OutOfDiskSpace <> 1]]></Publish>
                    <Publish Event="EndDialog" Value="Return"><![CDATA[OutOfDiskSpace <> 1]]></Publish>
                    <Publish Event="SpawnDialog" Value="OutOfRbDiskDlg">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST="P" OR NOT PROMPTROLLBACKCOST)</Publish>
                    <Publish Event="EndDialog" Value="Return">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
                    <Publish Event="EnableRollback" Value="False">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
                    <Publish Event="SpawnDialog" Value="OutOfDiskDlg">(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST="F")</Publish>
                </Control>
                <Control Id="Remove" Type="PushButton" X="236" Y="243" Width="56" Height="17" Hidden="yes" Text="!(loc.VerifyReadyDlgRemove)">
                    <Condition Action="show">MSIFACTUI_InstallMode = "Remove"</Condition>
                    <Publish Event="Remove" Value="All"><![CDATA[OutOfDiskSpace <> 1]]></Publish>
                    <Publish Event="EndDialog" Value="Return"><![CDATA[OutOfDiskSpace <> 1]]></Publish>
                    <Publish Event="SpawnDialog" Value="OutOfRbDiskDlg">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST="P" OR NOT PROMPTROLLBACKCOST)</Publish>
                    <Publish Event="EndDialog" Value="Return">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
                    <Publish Event="EnableRollback" Value="False">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
                    <Publish Event="SpawnDialog" Value="OutOfDiskDlg">(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST="F")</Publish>
                </Control>
                <Control Id="RepairTitle" Type="Text" X="15" Y="15" Width="300" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.VerifyReadyDlgRepairTitle)">
                    <Condition Action="show">MSIFACTUI_InstallMode = "Repair"</Condition>
                </Control>
                <Control Id="RepairText" Type="Text" X="25" Y="70" Width="320" Height="80" Hidden="yes" Text="!(loc.VerifyReadyDlgRepairText)">
                    <Condition Action="show">MSIFACTUI_InstallMode = "Repair"</Condition>
                </Control>
                <Control Id="RemoveTitle" Type="Text" X="15" Y="15" Width="300" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.VerifyReadyDlgRemoveTitle)">
                    <Condition Action="show">MSIFACTUI_InstallMode = "Remove"</Condition>
                </Control>
                <Control Id="RemoveText" Type="Text" X="25" Y="70" Width="320" Height="80" Hidden="yes" Text="!(loc.VerifyReadyDlgRemoveText)">
                    <Condition Action="show">MSIFACTUI_InstallMode = "Remove"</Condition>
                </Control>

                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.UIButtonCancel)">
                    <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
                </Control>
                <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.UIButtonBack)">
                    <Condition Action="default">MSIFACTUI_InstallMode = "Remove"</Condition>
                    <Publish Event="NewDialog" Value="[MSIFACT_DLG_PREV]">1</Publish>
                </Control>
                <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="Image_TopBanner" />
                <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="UISequence" ID="ResumeDlg">
<Fragment>
        <UI>
            <Dialog Id="ResumeDlg" Width="370" Height="270" Title="!(loc.ResumeDlg_Title)">
                <Control Id="Install" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ResumeDlgInstall)" ElevationShield="yes">
                    <Publish Event="SpawnWaitDialog" Value="WaitForCostingDlg">CostingComplete = 1</Publish>
                    <Publish Event="EndDialog" Value="Return"><![CDATA[OutOfDiskSpace <> 1]]></Publish>
                    <Publish Event="SpawnDialog" Value="OutOfRbDiskDlg">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST="P" OR NOT PROMPTROLLBACKCOST)</Publish>
                    <Publish Event="EndDialog" Value="Return">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
                    <Publish Event="EnableRollback" Value="False">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
                    <Publish Event="SpawnDialog" Value="OutOfDiskDlg">(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST="F")</Publish>
                </Control>
                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.UIButtonCancel)">
                    <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
                </Control>
                <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="Image_SideBanner" />
                <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.UIButtonBack)" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="30" Transparent="yes" NoPrefix="yes" Text="!(loc.ResumeDlgDescription)" />
                <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.ResumeDlgTitle)" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="Support" ID="ProgressDlg">
<Fragment>
        <UI>
            <Dialog Id="ProgressDlg" Width="370" Height="270" Title="!(loc.ProgressDlg_Title)" Modeless="yes">
                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.UIButtonCancel)">
                    <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
                </Control>
                <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="Image_TopBanner" />
                <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.UIButtonBack)" />
                <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.UIButtonNext)" />
                <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <!-- mutually exclusive title and description strings overlap  -->
                <Control Id="TextInstalling" Type="Text" X="35" Y="65" Width="300" Height="20" Hidden="yes" Text="!(loc.ProgressDlgTextInstalling)">
                    <Condition Action="show">NOT Installed OR (Installed AND (RESUME OR Preselected) AND NOT PATCH)</Condition>
                </Control>
                <Control Id="TitleInstalling" Type="Text" X="20" Y="15" Width="300" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleInstalling)">
                    <Condition Action="show">NOT Installed OR (Installed AND (RESUME OR Preselected) AND NOT PATCH)</Condition>
                </Control>
                <Control Id="TextChanging" Type="Text" X="35" Y="65" Width="300" Height="20" Hidden="yes" Text="!(loc.ProgressDlgTextChanging)">
                    <Condition Action="show">MSIFACTUI_InstallMode = "Change"</Condition>
                </Control>
                <Control Id="TitleChanging" Type="Text" X="20" Y="15" Width="300" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleChanging)">
                    <Condition Action="show">MSIFACTUI_InstallMode = "Change"</Condition>
                </Control>
                <Control Id="TextRepairing" Type="Text" X="35" Y="65" Width="300" Height="20" Hidden="yes" Text="!(loc.ProgressDlgTextRepairing)">
                    <Condition Action="show">MSIFACTUI_InstallMode = "Repair"</Condition>
                </Control>
                <Control Id="TitleRepairing" Type="Text" X="20" Y="15" Width="300" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleRepairing)">
                    <Condition Action="show">MSIFACTUI_InstallMode = "Repair"</Condition>
                </Control>
                <Control Id="TextRemoving" Type="Text" X="35" Y="65" Width="300" Height="20" Hidden="yes" Text="!(loc.ProgressDlgTextRemoving)">
                    <Condition Action="show">MSIFACTUI_InstallMode = "Remove"</Condition>
                </Control>
                <Control Id="TitleRemoving" Type="Text" X="20" Y="15" Width="300" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleRemoving)">
                    <Condition Action="show">MSIFACTUI_InstallMode = "Remove"</Condition>
                </Control>
                <Control Id="ActionText" Type="Text" X="70" Y="100" Width="265" Height="10">
                    <Subscribe Event="ActionText" Attribute="Text" />
                </Control>
                <Control Id="ProgressBar" Type="ProgressBar" X="35" Y="115" Width="300" Height="10" ProgressBlocks="yes" Text="!(loc.ProgressDlgProgressBar)">
                    <Subscribe Event="SetProgress" Attribute="Progress" />
                </Control>
                <Control Id="StatusLabel" Type="Text" X="35" Y="100" Width="35" Height="10" Text="!(loc.ProgressDlgStatusLabel)" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="Support" ID="PrepareDlg">
<Fragment>
        <UI>
            <Dialog Id="PrepareDlg" Width="370" Height="270" Title="!(loc.PrepareDlg_Title)" Modeless="yes">
                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.UIButtonCancel)">
                    <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
                </Control>
                <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="Image_SideBanner" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.PrepareDlgDescription)" />
                <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.PrepareDlgTitle)" />
                <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" TabSkip="yes" Text="!(loc.UIButtonBack)" />
                <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Disabled="yes" TabSkip="yes" Text="!(loc.UIButtonNext)" />
                <Control Id="ActionData" Type="Text" X="135" Y="125" Width="220" Height="30" Transparent="yes" NoPrefix="yes">
                    <Subscribe Event="ActionData" Attribute="Text" />
                </Control>
                <Control Id="ActionText" Type="Text" X="135" Y="100" Width="220" Height="20" Transparent="yes" NoPrefix="yes">
                    <Subscribe Event="ActionText" Attribute="Text" />
                </Control>
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="Required" ID="ExitDialog">
<Fragment>
        <UI>
            <Dialog Id="ExitDialog" Width="370" Height="270" Title="!(loc.ExitDialog_Title)">
                <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.UIButtonFinish)">
                	<Publish Event="EndDialog" Value="Return" Order="999">1</Publish>
                </Control>
                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.UIButtonCancel)" />
                <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="Image_SideBanner" />
                <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.UIButtonBack)" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.ExitDialogDescription)" />
                <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.ExitDialogTitle)" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="Required" ID="UserExit">
<Fragment>
        <UI>
            <Dialog Id="UserExit" Width="370" Height="270" Title="!(loc.UserExit_Title)">
                <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.UIButtonFinish)">
                    <Publish Event="EndDialog" Value="Exit">1</Publish>
                </Control>
                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.UIButtonCancel)" />
                <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="Image_SideBanner" />
                <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.UIButtonBack)" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.UserExitTitle)" />
                <Control Id="Description1" Type="Text" X="135" Y="70" Width="220" Height="40" Transparent="yes" NoPrefix="yes" Text="!(loc.UserExitDescription1)" />
                <Control Id="Description2" Type="Text" X="135" Y="115" Width="220" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.UserExitDescription2)" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="Required" ID="FatalError">
<Fragment>
        <UI>
            <Dialog Id="FatalError" Width="370" Height="270" Title="!(loc.FatalError_Title)">
                <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.UIButtonFinish)">
                    <Publish Event="EndDialog" Value="Exit">1</Publish>
                </Control>
                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.UIButtonCancel)" />
                <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="Image_SideBanner" />
                <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.UIButtonBack)" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.FatalErrorTitle)" />
                <Control Id="Description1" Type="Text" X="135" Y="70" Width="220" Height="40" Transparent="yes" NoPrefix="yes" Text="!(loc.FatalErrorDescription1)" />
                <Control Id="Description2" Type="Text" X="135" Y="115" Width="220" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.FatalErrorDescription2)" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="Support" ID="FilesInUse">
<Fragment>
        <UI>
            <Dialog Id="FilesInUse" Width="370" Height="270" Title="!(loc.FilesInUse_Title)" KeepModeless="yes">
                <Control Id="Retry" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.UIButtonRetry)">
                    <Publish Event="EndDialog" Value="Retry">1</Publish>
                </Control>
                <Control Id="Ignore" Type="PushButton" X="235" Y="243" Width="56" Height="17" Text="!(loc.UIButtonIgnore)">
                    <Publish Event="EndDialog" Value="Ignore">1</Publish>
                </Control>
                <Control Id="Exit" Type="PushButton" X="166" Y="243" Width="56" Height="17" Text="!(loc.FilesInUseExit)">
                    <Publish Event="EndDialog" Value="Exit">1</Publish>
                </Control>
                <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="Image_TopBanner" />
                <Control Id="Text" Type="Text" X="20" Y="55" Width="330" Height="30" Text="!(loc.FilesInUseText)" />
                <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <Control Id="Description" Type="Text" X="20" Y="23" Width="280" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.FilesInUseDescription)" />
                <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.FilesInUseTitle)" />
                <Control Id="List" Type="ListBox" X="20" Y="87" Width="330" Height="130" Property="FileInUseProcess" Sunken="yes" TabSkip="yes" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="Support" ID="ErrorDlg">
<Fragment>
        <UI>
            <Dialog Id="ErrorDlg" Y="10" Width="270" Height="105" Title="!(loc.ErrorDlg_Title)" ErrorDialog="yes">
                <Control Id="ErrorText" Type="Text" X="48" Y="15" Width="205" Height="60" TabSkip="no" Text="!(loc.ErrorDlgErrorText)" />
                <Control Id="Y" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.UIButtonYes)">
                    <Publish Event="EndDialog" Value="ErrorYes">1</Publish>
                </Control>
                <Control Id="A" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.UIButtonCancel)">
                    <Publish Event="EndDialog" Value="ErrorAbort">1</Publish>
                </Control>
                <Control Id="C" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.UIButtonCancel)">
                    <Publish Event="EndDialog" Value="ErrorCancel">1</Publish>
                </Control>
                <Control Id="ErrorIcon" Type="Icon" X="15" Y="15" Width="24" Height="24" ToolTip="!(loc.ErrorDlgErrorIconTooltip)" FixedSize="yes" IconSize="32" Text="Icon_Exclamation" />
                <Control Id="I" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.UIButtonIgnore)">
                    <Publish Event="EndDialog" Value="ErrorIgnore">1</Publish>
                </Control>
                <Control Id="N" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.UIButtonNo)">
                    <Publish Event="EndDialog" Value="ErrorNo">1</Publish>
                </Control>
                <Control Id="O" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.UIButtonOK)">
                    <Publish Event="EndDialog" Value="ErrorOk">1</Publish>
                </Control>
                <Control Id="R" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.UIButtonRetry)">
                    <Publish Event="EndDialog" Value="ErrorRetry">1</Publish>
                </Control>
            </Dialog>

            <Property Id="ErrorDialog" Value="ErrorDlg" />
        </UI>
    </Fragment>
</DialogData>
<DialogData Type="Support" ID="MsiRMFilesInUse">
<Fragment>
        <UI>
            <Dialog Id="MsiRMFilesInUse" Width="370" Height="270" Title="!(loc.MsiRMFilesInUse_Title)" KeepModeless="yes">
                <Control Id="OK" Type="PushButton" X="240" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.UIButtonOK)">
                    <Publish Event="EndDialog" Value="Return">1</Publish>
                    <Publish Event="RMShutdownAndRestart" Value="0">MSIFACTUIRMOption~="UseRM"</Publish>
                </Control>
                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.UIButtonCancel)">
                    <Publish Event="EndDialog" Value="Exit">1</Publish>
                </Control>

                <Control Id="ShutdownOption" Type="RadioButtonGroup" X="34" Y="176" Width="305" Height="52" Property="MSIFACTUIRMOption">
                    <RadioButtonGroup Property="MSIFACTUIRMOption">
                        <RadioButton Value="UseRM" X="5" Y="12" Width="295" Height="17" Text="!(loc.MsiRMFilesInUseUseRM)" />
                        <RadioButton Value="DontUseRM" X="6" Y="29" Width="296" Height="17" Text="!(loc.MsiRMFilesInUseDontUseRM)" />
                    </RadioButtonGroup>
                </Control>

                <Control Id="List" Type="ListBox" X="20" Y="89" Width="330" Height="84" Property="FileInUseProcess" Sunken="yes" TabSkip="yes" />
                <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="Image_TopBanner" />
                <Control Id="Text" Type="Text" X="20" Y="55" Width="332" Height="33" Text="!(loc.MsiRMFilesInUseText)" />
                <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                <Control Id="Description" Type="Text" X="20" Y="23" Width="280" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.MsiRMFilesInUseDescription)" />
                <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.MsiRMFilesInUseTitle)" />
            </Dialog>
        </UI>
    </Fragment>
</DialogData>
</Screens>
<Binaries>
<Binary Id="Icon_Information" File="$(var.MSIFactoryFolder)\UI\Default\info.ico"/>
<Binary Id="Image_SideBanner" File="$(var.MSIFactoryFolder)\UI\Default\dlgbmp.bmp"/>
<Binary Id="Image_TopBanner" File="$(var.MSIFactoryFolder)\UI\Default\bannrbmp.bmp"/>
<Binary Id="Icon_Up" File="$(var.MSIFactoryFolder)\UI\Default\Up.ico"/>
<Binary Id="Icon_New" File="$(var.MSIFactoryFolder)\UI\Default\New.ico"/>
<Binary Id="Icon_Exclamation" File="$(var.MSIFactoryFolder)\UI\Default\exclamic.ico"/>
</Binaries>
<MSIUISequence Type="InstallUISequence">
<DialogSequence Name="First Install" AddFilter="UISequence" Type="Before" Value="ProgressDlg" Condition="NOT Installed">
<DialogRef>WelcomeDlg</DialogRef>
<DialogRef>InstallDirDlg</DialogRef>
<DialogRef>VerifyReadyDlgInstall</DialogRef>
</DialogSequence>
<DialogSequence Name="Maintenance Install" AddFilter="UISequence" Type="Before" Value="ProgressDlg" Condition="Installed AND NOT RESUME AND NOT Preselected">
<DialogRef>MaintenanceWelcomeDlg</DialogRef>
<DialogRef>MaintenanceTypeDlgNoChange</DialogRef>
<DialogRef>MaintenanceVerifyReadyDlgNoChange</DialogRef>
</DialogSequence>
<DialogSequence Name="Resume Install" AddFilter="UISequence" Type="Before" Value="ProgressDlg" Condition="Installed AND (RESUME OR Preselected)">
<DialogRef>ResumeDlg</DialogRef>
</DialogSequence>
<DialogSequence Name="Progress" AddFilter="Support" Type="Before" Value="ExecuteAction">
<DialogRef>ProgressDlg</DialogRef>
</DialogSequence>
<DialogSequence Name="Preparing" AddFilter="Support" Type="Before" Value="AppSearch">
<DialogRef>PrepareDlg</DialogRef>
</DialogSequence>
<DialogSequence Name="Install Completed Successfully" AddFilter="Required" Type="OnExit" Value="success">
<DialogRef>ExitDialog</DialogRef>
</DialogSequence>
<DialogSequence Name="User Aborted Install" AddFilter="Required" Type="OnExit" Value="cancel">
<DialogRef>UserExit</DialogRef>
</DialogSequence>
<DialogSequence Name="Fatal Error" AddFilter="Required" Type="OnExit" Value="error">
<DialogRef>FatalError</DialogRef>
</DialogSequence>
</MSIUISequence>
<MSIUISequence Type="AdminUISequence">
<DialogSequence Name="Install Completed Successfully" AddFilter="Required" Type="OnExit" Value="success">
<DialogRef>ExitDialog</DialogRef>
</DialogSequence>
<DialogSequence Name="User Aborted Install" AddFilter="Required" Type="OnExit" Value="cancel">
<DialogRef>UserExit</DialogRef>
</DialogSequence>
<DialogSequence Name="Fatal Error" AddFilter="Required" Type="OnExit" Value="error">
<DialogRef>FatalError</DialogRef>
</DialogSequence>
</MSIUISequence>
<SupportFiles/>
<Languages>
<Language Name="English-US" LanguageId="1033" Codepage="0" AutoSynch="yes" SynchronizeFile="$(var.MSIFactoryFolder)\UI\Default\Language_en-us.lang">
<String Id="AddComPlusPartitionUsers">Setting default COM+ partitions for users</String>
<String Id="AddComPlusPartitionUsersTemplate">User: [1]</String>
<String Id="AddComPlusRoleAssignments">Assigning roles to COM+ components</String>
<String Id="AddComPlusRoleAssignmentsTemplate">Component: [1]</String>
<String Id="AddUsersToComPlusApplicationRoles">Adding users to COM+ application roles</String>
<String Id="AddUsersToComPlusApplicationRolesTemplate">User: [1]</String>
<String Id="AddUsersToComPlusPartitionRoles">Adding users to COM+ partition roles</String>
<String Id="AddUsersToComPlusPartitionRolesTemplate">Role: [1]</String>
<String Id="AdvancedWelcomeEulaDlgAdvanced">A&amp;dvanced</String>
<String Id="AdvancedWelcomeEulaDlgDescriptionPerMachine">Click Install to install the product with default options for all users. Click Advanced to change installation options.</String>
<String Id="AdvancedWelcomeEulaDlgDescriptionPerUser">Click Install to install the product with default options just for you. Click Advanced to change installation options.</String>
<String Id="AdvancedWelcomeEulaDlgInstall">&amp;Install</String>
<String Id="AdvancedWelcomeEulaDlgLicenseAcceptedCheckBox">I &amp;accept the terms in this License Agreement</String>
<String Id="AdvancedWelcomeEulaDlgTitle">{\UI_Font_Title}Please read the [ProductName] License Agreement</String>
<String Id="AdvancedWelcomeEulaDlg_Title">[ProductName] Setup</String>
<String Id="BrowseDlgButton_Bmp_UpTooltip">Up one level</String>
<String Id="BrowseDlgComboLabel">&amp;Look in:</String>
<String Id="BrowseDlgDescription">Browse to the destination folder</String>
<String Id="BrowseDlgNewFolderTooltip">Create a new folder</String>
<String Id="BrowseDlgPathLabel">&amp;Folder name:</String>
<String Id="BrowseDlgTitle">{\UI_Font_Title}Change destination folder</String>
<String Id="BrowseDlg_Title">[ProductName] Setup</String>
<String Id="CancelDlgIconTooltip">Information icon</String>
<String Id="CancelDlgText">Are you sure you want to cancel the [ProductName] installation?</String>
<String Id="CancelDlg_Title">[ProductName] Setup</String>
<String Id="CollectUserInfoDlgOrganization">&amp;Organization:</String>
<String Id="CollectUserInfoDlgSerialNumber">&amp;Serial Number:</String>
<String Id="CollectUserInfoDlgSubtitleLine">Please enter your customer information</String>
<String Id="CollectUserInfoDlgTitleLine">{\UI_Font_Title}Customer Information</String>
<String Id="CollectUserInfoDlgUserName">&amp;User Name:</String>
<String Id="CollectUserInfoDlgWindowTitle">[ProductName] Setup</String>
<String Id="ComPlusInstallExecute">Registering COM+ components</String>
<String Id="ComPlusUninstallExecute">Unregistering COM+ components</String>
<String Id="CommitMetabaseTransaction">Committing IIS Metabase Transaction</String>
<String Id="ConfigureIIs">Configuring IIS</String>
<String Id="ConfigureSql">Configuring SQL Server</String>
<String Id="CreateComPlusApplicationRoles">Creating COM+ application roles</String>
<String Id="CreateComPlusApplicationRolesTemplate">Role: [1]</String>
<String Id="CreateComPlusApplications">Creating COM+ applications</String>
<String Id="CreateComPlusApplicationsTemplate">Application: [1]</String>
<String Id="CreateComPlusPartitions">Creating COM+ partitions</String>
<String Id="CreateComPlusPartitionsTemplate">Partition: [1]</String>
<String Id="CreateDatabase">Creating Databases</String>
<String Id="CreateSubscriptionsComPlusComponents">Creating subscriptions for COM+ components</String>
<String Id="CreateSubscriptionsComPlusComponentsTemplate">Subscription: [1]</String>
<String Id="CustomizeDlgBrowse">B&amp;rowse...</String>
<String Id="CustomizeDlgDescription">Select the way you want features to be installed.</String>
<String Id="CustomizeDlgDiskCost">Disk &amp;Usage</String>
<String Id="CustomizeDlgItemDescription">CustomizeDlgItemDescription-CustomizeDlgItemDescription</String>
<String Id="CustomizeDlgItemSize">CustomizeDlgItemSize-CustomizeDlgItemSize</String>
<String Id="CustomizeDlgLocation">CustomizeDlgLocation-CustomizeDlgLocation</String>
<String Id="CustomizeDlgLocationLabel">Location:</String>
<String Id="CustomizeDlgReset">Re&amp;set</String>
<String Id="CustomizeDlgText">Click the icons in the tree below to change the way features will be installed.</String>
<String Id="CustomizeDlgTitle">{\UI_Font_Title}Custom Setup</String>
<String Id="CustomizeDlgTree">Tree of selections</String>
<String Id="CustomizeDlg_Title">[ProductName] Setup</String>
<String Id="DiskCostDlgDescription">The disk space required for the installation of the selected features.</String>
<String Id="DiskCostDlgText">Highlighted volumes do not have enough disk space available for selected features. You can either remove some files from the highlighted volumes, install fewer features, or select different destination drives.</String>
<String Id="DiskCostDlgTitle">{\UI_Font_Title}Disk Space Requirements</String>
<String Id="DiskCostDlgVolumeList">{120}{70}{70}{70}{70}</String>
<String Id="DiskCostDlg_Title">[ProductName] Setup</String>
<String Id="DropDatabase">Dropping Databases</String>
<String Id="Error0">{{Fatal error: }}</String>
<String Id="Error1">{{Error [1]. }}</String>
<String Id="Error10">{[2]}{, [3]}{, [4]}</String>
<String Id="Error11">Message type: [1], Argument: [2]</String>
<String Id="Error1101">Error reading from file: [2]. {{ System error [3].}}  Verify that the file exists and that you can access it.</String>
<String Id="Error12">=== Logging started: [Date]  [Time] ===</String>
<String Id="Error13">=== Logging stopped: [Date]  [Time] ===</String>
<String Id="Error1301">Cannot create the file '[2]'. A directory with this name already exists. Cancel the install and try installing to a different location.</String>
<String Id="Error1302">Please insert the disk: [2]</String>
<String Id="Error1303">The installer has insufficient privileges to access this directory: [2]. The installation cannot continue. Log on as administrator or contact your system administrator.</String>
<String Id="Error1304">Error writing to file: [2]. Verify that you have access to that directory.</String>
<String Id="Error1305">Error reading from file [2]. {{ System error [3].}} Verify that the file exists and that you can access it.</String>
<String Id="Error1306">Another application has exclusive access to the file '[2]'. Please shut down all other applications, then click Retry.</String>
<String Id="Error1307">There is not enough disk space to install this file: [2]. Free some disk space and click Retry, or click Cancel to exit.</String>
<String Id="Error1308">Source file not found: [2]. Verify that the file exists and that you can access it.</String>
<String Id="Error1309">Error reading from file: [3]. {{ System error [2].}}  Verify that the file exists and that you can access it.</String>
<String Id="Error1310">Error writing to file: [3]. {{ System error [2].}}  Verify that you have access to that directory.</String>
<String Id="Error1311">Source file not found{{(cabinet)}}: [2]. Verify that the file exists and that you can access it.</String>
<String Id="Error1312">Cannot create the directory '[2]'. A file with this name already exists. Please rename or remove the file and click Retry, or click Cancel to exit.</String>
<String Id="Error1313">The volume [2] is currently unavailable. Please select another.</String>
<String Id="Error1314">The specified path '[2]' is unavailable.</String>
<String Id="Error1315">Unable to write to the specified folder: [2].</String>
<String Id="Error1316">A network error occurred while attempting to read from the file: [2]</String>
<String Id="Error1317">An error occurred while attempting to create the directory: [2]</String>
<String Id="Error1318">A network error occurred while attempting to create the directory: [2]</String>
<String Id="Error1319">A network error occurred while attempting to open the source file cabinet: [2]</String>
<String Id="Error1320">The specified path is too long: [2]</String>
<String Id="Error1321">The Installer has insufficient privileges to modify this file: [2].</String>
<String Id="Error1322">A portion of the folder path '[2]' is invalid. It is either empty or exceeds the length allowed by the system.</String>
<String Id="Error1323">The folder path '[2]' contains words that are not valid in folder paths.</String>
<String Id="Error1324">The folder path '[2]' contains an invalid character.</String>
<String Id="Error1325">'[2]' is not a valid short file name.</String>
<String Id="Error1326">Error getting file security: [3] GetLastError: [2]</String>
<String Id="Error1327">Invalid Drive: [2]</String>
<String Id="Error1328">Error applying patch to file [2]. It has probably been updated by other means, and can no longer be modified by this patch. For more information contact your patch vendor. {{System Error: [3]}}</String>
<String Id="Error1329">A file that is required cannot be installed because the cabinet file [2] is not digitally signed. This may indicate that the cabinet file is corrupt.</String>
<String Id="Error1330">A file that is required cannot be installed because the cabinet file [2] has an invalid digital signature. This may indicate that the cabinet file is corrupt.{{  Error [3] was returned by WinVerifyTrust.}}</String>
<String Id="Error1331">Failed to correctly copy [2] file: CRC error.</String>
<String Id="Error1332">Failed to correctly move [2] file: CRC error.</String>
<String Id="Error1333">Failed to correctly patch [2] file: CRC error.</String>
<String Id="Error1334">The file '[2]' cannot be installed because the file cannot be found in cabinet file '[3]'. This could indicate a network error, an error reading from the CD-ROM, or a problem with this package.</String>
<String Id="Error1335">The cabinet file '[2]' required for this installation is corrupt and cannot be used. This could indicate a network error, an error reading from the CD-ROM, or a problem with this package.</String>
<String Id="Error1336">There was an error creating a temporary file that is needed to complete this installation.{{  Folder: [3]. System error code: [2]}}</String>
<String Id="Error14">Action start [Time]: [1].</String>
<String Id="Error1401">Could not create key: [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel. </String>
<String Id="Error1402">Could not open key: [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel. </String>
<String Id="Error1403">Could not delete value [2] from key [3]. {{ System error [4].}}  Verify that you have sufficient access to that key, or contact your support personnel. </String>
<String Id="Error1404">Could not delete key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel. </String>
<String Id="Error1405">Could not read value [2] from key [3]. {{ System error [4].}}  Verify that you have sufficient access to that key, or contact your support personnel. </String>
<String Id="Error1406">Could not write value [2] to key [3]. {{ System error [4].}}  Verify that you have sufficient access to that key, or contact your support personnel.</String>
<String Id="Error1407">Could not get value names for key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.</String>
<String Id="Error1408">Could not get sub key names for key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.</String>
<String Id="Error1409">Could not read security information for key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.</String>
<String Id="Error1410">Could not increase the available registry space. [2] KB of free registry space is required for the installation of this application.</String>
<String Id="Error15">Action ended [Time]: [1]. Return value [2].</String>
<String Id="Error1500">Another installation is in progress. You must complete that installation before continuing this one.</String>
<String Id="Error1501">Error accessing secured data. Please make sure the Windows Installer is configured properly and try the install again.</String>
<String Id="Error1502">User '[2]' has previously initiated an install for product '[3]'. That user will need to run that install again before they can use that product. Your current install will now continue.</String>
<String Id="Error1503">User '[2]' has previously initiated an install for product '[3]'. That user will need to run that install again before they can use that product.</String>
<String Id="Error16">Time remaining: {[1] minutes }{[2] seconds}</String>
<String Id="Error1601">Out of disk space -- Volume: '[2]'; required space: [3] KB; available space: [4] KB. Free some disk space and retry.</String>
<String Id="Error1602">Are you sure you want to cancel?</String>
<String Id="Error1603">The file [2][3] is being held in use{ by the following process: Name: [4], Id: [5], Window Title: '[6]'}. Close that application and retry.</String>
<String Id="Error1604">The product '[2]' is already installed, preventing the installation of this product. The two products are incompatible.</String>
<String Id="Error1605">There is not enough disk space on the volume '[2]' to continue the install with recovery enabled. [3] KB are required, but only [4] KB are available. Click Ignore to continue the install without saving recovery information, click Retry to check for available space again, or click Cancel to quit the installation.</String>
<String Id="Error1606">Could not access network location [2].</String>
<String Id="Error1607">The following applications should be closed before continuing the install:</String>
<String Id="Error1608">Could not find any previously installed compliant products on the machine for installing this product.</String>
<String Id="Error1609">An error occurred while applying security settings. [2] is not a valid user or group. This could be a problem with the package, or a problem connecting to a domain controller on the network. Check your network connection and click Retry, or Cancel to end the install. {{Unable to locate the user's SID, system error [3]}}</String>
<String Id="Error17">Out of memory. Shut down other applications before retrying.</String>
<String Id="Error1701">The key [2] is not valid. Verify that you entered the correct key.</String>
<String Id="Error1702">The installer must restart your system before configuration of [2] can continue. Click Yes to restart now or No if you plan to manually restart later.</String>
<String Id="Error1703">You must restart your system for the configuration changes made to [2] to take effect. Click Yes to restart now or No if you plan to manually restart later.</String>
<String Id="Error1704">An installation for [2] is currently suspended. You must undo the changes made by that installation to continue. Do you want to undo those changes?</String>
<String Id="Error1705">A previous installation for this product is in progress. You must undo the changes made by that installation to continue. Do you want to undo those changes?</String>
<String Id="Error1706">An installation package for the product [2] cannot be found. Try the installation again using a valid copy of the installation package '[3]'.</String>
<String Id="Error1707">Installation completed successfully.</String>
<String Id="Error1708">Installation failed.</String>
<String Id="Error1709">Product: [2] -- [3]</String>
<String Id="Error1710">You may either restore your computer to its previous state or continue the install later. Would you like to restore?</String>
<String Id="Error1711">An error occurred while writing installation information to disk. Check to make sure enough disk space is available, and click Retry, or Cancel to end the install.</String>
<String Id="Error1712">One or more of the files required to restore your computer to its previous state could not be found. Restoration will not be possible.</String>
<String Id="Error1713">[2] cannot install one of its required products. Contact your technical support group. {{System Error: [3].}}</String>
<String Id="Error1714">The older version of [2] cannot be removed. Contact your technical support group. {{System Error [3].}}</String>
<String Id="Error1715">Installed [2]</String>
<String Id="Error1716">Configured [2]</String>
<String Id="Error1717">Removed [2]</String>
<String Id="Error1718">File [2] was rejected by digital signature policy.</String>
<String Id="Error1719">The Windows Installer Service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance.</String>
<String Id="Error1720">There is a problem with this Windows Installer package. A script required for this install to complete could not be run. Contact your support personnel or package vendor. {{Custom action [2] script error [3], [4]: [5] Line [6], Column [7], [8] }}</String>
<String Id="Error1721">There is a problem with this Windows Installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor. {{Action: [2], location: [3], command: [4] }}</String>
<String Id="Error1722">There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. {{Action [2], location: [3], command: [4] }}</String>
<String Id="Error1723">There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package vendor. {{Action [2], entry: [3], library: [4] }}</String>
<String Id="Error1724">Removal completed successfully.</String>
<String Id="Error1725">Removal failed.</String>
<String Id="Error1726">Advertisement completed successfully.</String>
<String Id="Error1727">Advertisement failed.</String>
<String Id="Error1728">Configuration completed successfully.</String>
<String Id="Error1729">Configuration failed.</String>
<String Id="Error1730">You must be an Administrator to remove this application. To remove this application, you can log on as an Administrator, or contact your technical support group for assistance.</String>
<String Id="Error1731">The source installation package for the product [2] is out of sync with the client package. Try the installation again using a valid copy of the installation package '[3]'.</String>
<String Id="Error1732">In order to complete the installation of [2], you must restart the computer. Other users are currently logged on to this computer, and restarting may cause them to lose their work. Do you want to restart now?</String>
<String Id="Error18">Installer is no longer responding.</String>
<String Id="Error1801">The path [2] is not valid. Please specify a valid path.</String>
<String Id="Error1802">Out of memory. Shut down other applications before retrying.</String>
<String Id="Error1803">There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to go back to the previously selected volume.</String>
<String Id="Error1804">There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to return to the browse dialog and select a different volume.</String>
<String Id="Error1805">The folder [2] does not exist. Please enter a path to an existing folder.</String>
<String Id="Error1806">You have insufficient privileges to read this folder.</String>
<String Id="Error1807">A valid destination folder for the install could not be determined.</String>
<String Id="Error19">Installer stopped prematurely.</String>
<String Id="Error1901">Error attempting to read from the source install database: [2].</String>
<String Id="Error1902">Scheduling reboot operation: Renaming file [2] to [3]. Must reboot to complete operation.</String>
<String Id="Error1903">Scheduling reboot operation: Deleting file [2]. Must reboot to complete operation.</String>
<String Id="Error1904">Module [2] failed to register. HRESULT [3]. Contact your support personnel.</String>
<String Id="Error1905">Module [2] failed to unregister. HRESULT [3]. Contact your support personnel.</String>
<String Id="Error1906">Failed to cache package [2]. Error: [3]. Contact your support personnel.</String>
<String Id="Error1907">Could not register font [2]. Verify that you have sufficient permissions to install fonts, and that the system supports this font.</String>
<String Id="Error1908">Could not unregister font [2]. Verify that you that you have sufficient permissions to remove fonts.</String>
<String Id="Error1909">Could not create Shortcut [2]. Verify that the destination folder exists and that you can access it.</String>
<String Id="Error1910">Could not remove Shortcut [2]. Verify that the shortcut file exists and that you can access it.</String>
<String Id="Error1911">Could not register type library for file [2]. Contact your support personnel.</String>
<String Id="Error1912">Could not unregister type library for file [2]. Contact your support personnel.</String>
<String Id="Error1913">Could not update the ini file [2][3]. Verify that the file exists and that you can access it.</String>
<String Id="Error1914">Could not schedule file [2] to replace file [3] on reboot. Verify that you have write permissions to file [3].</String>
<String Id="Error1915">Error removing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel.</String>
<String Id="Error1916">Error installing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel.</String>
<String Id="Error1917">Error removing ODBC driver: [4], ODBC error [2]: [3]. Verify that you have sufficient privileges to remove ODBC drivers.</String>
<String Id="Error1918">Error installing ODBC driver: [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it.</String>
<String Id="Error1919">Error configuring ODBC data source: [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it.</String>
<String Id="Error1920">Service '[2]' ([3]) failed to start. Verify that you have sufficient privileges to start system services.</String>
<String Id="Error1921">Service '[2]' ([3]) could not be stopped. Verify that you have sufficient privileges to stop system services.</String>
<String Id="Error1922">Service '[2]' ([3]) could not be deleted. Verify that you have sufficient privileges to remove system services.</String>
<String Id="Error1923">Service '[2]' ([3]) could not be installed. Verify that you have sufficient privileges to install system services.</String>
<String Id="Error1924">Could not update environment variable '[2]'. Verify that you have sufficient privileges to modify environment variables.</String>
<String Id="Error1925">You do not have sufficient privileges to complete this installation for all users of the machine. Log on as administrator and then retry this installation.</String>
<String Id="Error1926">Could not set file security for file '[3]'. Error: [2]. Verify that you have sufficient privileges to modify the security permissions for this file.</String>
<String Id="Error1927">Component Services (COM+ 1.0) are not installed on this computer. This installation requires Component Services in order to complete successfully. Component Services are available on Windows 2000.</String>
<String Id="Error1928">Error registering COM+ Application. Contact your support personnel for more information.</String>
<String Id="Error1929">Error unregistering COM+ Application. Contact your support personnel for more information.</String>
<String Id="Error1930">The description for service '[2]' ([3]) could not be changed.</String>
<String Id="Error1931">The Windows Installer service cannot update the system file [2] because the file is protected by Windows. You may need to update your operating system for this program to work correctly. {{Package version: [3], OS Protected version: [4]}}</String>
<String Id="Error1932">The Windows Installer service cannot update the protected Windows file [2]. {{Package version: [3], OS Protected version: [4], SFP Error: [5]}}</String>
<String Id="Error1933">The Windows Installer service cannot update one or more protected Windows files. {{SFP Error: [2]. List of protected files:\r\n[3]}}</String>
<String Id="Error1934">User installations are disabled via policy on the machine.</String>
<String Id="Error1935">An error occurred during the installation of assembly '[6]'. Please refer to Help and Support for more information. HRESULT: [3]. {{assembly interface: [4], function: [5], component: [2]}}</String>
<String Id="Error1936">An error occurred during the installation of assembly '[6]'. The assembly is not strongly named or is not signed with the minimal key length. HRESULT: [3]. {{assembly interface: [4], function: [5], component: [2]}}</String>
<String Id="Error1937">An error occurred during the installation of assembly '[6]'. The signature or catalog could not be verified or is not valid. HRESULT: [3]. {{assembly interface: [4], function: [5], component: [2]}}</String>
<String Id="Error1938">An error occurred during the installation of assembly '[6]'. One or more modules of the assembly could not be found. HRESULT: [3]. {{assembly interface: [4], function: [5], component: [2]}}</String>
<String Id="Error2">Warning [1]. </String>
<String Id="Error20">Please wait while Windows configures [ProductName]</String>
<String Id="Error21">Gathering required information...</String>
<String Id="Error22">Removing older versions of this application...</String>
<String Id="Error23">Preparing to remove older versions of this application...</String>
<String Id="Error32">{[ProductName] }Setup completed successfully.</String>
<String Id="Error33">{[ProductName] }Setup failed.</String>
<String Id="Error4">Info [1]. </String>
<String Id="Error5">The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is [1]. {{The arguments are: [2], [3], [4]}}</String>
<String Id="Error7">{{Disk full: }}</String>
<String Id="Error8">Action [Time]: [1]. [2]</String>
<String Id="Error9">[ProductName]</String>
<String Id="ErrorDlgErrorIconTooltip">Information icon</String>
<String Id="ErrorDlgErrorText">Information text</String>
<String Id="ErrorDlg_Title">[ProductName] Setup</String>
<String Id="ExecuteSqlStrings">Executing SQL Strings</String>
<String Id="ExitDialogDescription">Click the Finish button to exit.</String>
<String Id="ExitDialogTitle">{\UI_Font_Bigger}Completed the [ProductName] installation</String>
<String Id="ExitDialog_Title">[ProductName] Setup</String>
<String Id="FatalErrorDescription1">[ProductName] setup ended prematurely because of an error. Your system has not been modified. To install this program at a later time, run this setup again.</String>
<String Id="FatalErrorDescription2">Click the Finish button to exit.</String>
<String Id="FatalErrorTitle">{\UI_Font_Bigger}[ProductName] setup ended prematurely</String>
<String Id="FatalError_Title">[ProductName] Setup</String>
<String Id="FeaturesDlgChange">&amp;Change</String>
<String Id="FeaturesDlgDescription">Select the way you want features to be installed.</String>
<String Id="FeaturesDlgInstall">&amp;Install</String>
<String Id="FeaturesDlgItemDescription">FeaturesDlgItemDescription</String>
<String Id="FeaturesDlgItemSize">FeaturesDlgItemSize</String>
<String Id="FeaturesDlgTitle">{\UI_Font_Title}Product Features</String>
<String Id="FeaturesDlgTree">Product features</String>
<String Id="FeaturesDlg_Title">[ProductName] Setup</String>
<String Id="FilesInUseDescription">Some files that need to be updated are currently in use.</String>
<String Id="FilesInUseExit">E&amp;xit</String>
<String Id="FilesInUseText">The following applications are using files that need to be updated by this setup. Close these applications and then click Retry to continue the installation or Exit to exit it.</String>
<String Id="FilesInUseTitle">{\UI_Font_Title}Files in Use</String>
<String Id="FilesInUse_Title">[ProductName] Setup</String>
<String Id="InstallDirDlgChange">&amp;Change...</String>
<String Id="InstallDirDlgDescription">Where would you like [ProductName] to be installed?</String>
<String Id="InstallDirDlgFolderLabel">Install [ProductName] to:</String>
<String Id="InstallDirDlgTitle">{\UI_Font_Title}Destination Folder</String>
<String Id="InstallDirDlg_Title">[ProductName] Setup</String>
<String Id="InstallScopeDlgChange">&amp;Change...</String>
<String Id="InstallScopeDlgDescription">Choose the installation scope and folder</String>
<String Id="InstallScopeDlgFolderLabel">Installation &amp;folder:</String>
<String Id="InstallScopeDlgNoPerUserDescription">[ProductName] does not support per-user installation.</String>
<String Id="InstallScopeDlgPerMachine">{\UI_Font_Emphasized}Install for all users of this &amp;machine</String>
<String Id="InstallScopeDlgPerMachineDescription">[ProductName] will be installed in a per-machine folder by default and be available for all users. You can change the default installation folder. You must have local Administrator priveleges.</String>
<String Id="InstallScopeDlgPerUser">{\UI_Font_Emphasized}Install &amp;just for you ([USERNAME])</String>
<String Id="InstallScopeDlgPerUserDescription">[ProductName] will be installed in a per-user folder and be available just for your user account. You do not need local Administrator priveleges.</String>
<String Id="InstallScopeDlgTitle">{\UI_Font_Title}Installation Scope</String>
<String Id="InstallScopeDlg_Title">[ProductName] Setup</String>
<String Id="LaunchConditionColorBits">The display must be set to a higher color depth in order to install [ProductName] on this system.</String>
<String Id="LaunchConditionOS">[ProductName] cannot be installed on this operating system.</String>
<String Id="LaunchConditionPhysicalMemory">There is not enough physical memory to install [ProductName] on this system.</String>
<String Id="LaunchConditionScreenX">The display must be set to a higher resolution in order to install [ProductName] on this system.</String>
<String Id="LaunchConditionScreenY">The display must be set to a higher resolution in order to install [ProductName] on this system.</String>
<String Id="LaunchConditionVersionMsi">This setup requires Windows Installer version [1] or greater.</String>
<String Id="LicenseAgreementDlgDescription">Please read the following license agreement carefully</String>
<String Id="LicenseAgreementDlgLicenseAcceptedCheckBox">I &amp;accept the terms of this License Agreement</String>
<String Id="LicenseAgreementDlgTitle">{\UI_Font_Title}End-User License Agreement</String>
<String Id="LicenseAgreementDlg_Title">[ProductName] Setup</String>
<String Id="MaintenanceTypeDlgChangeButton">&amp;Change</String>
<String Id="MaintenanceTypeDlgChangeButtonTooltip">Change Installation</String>
<String Id="MaintenanceTypeDlgChangeDisabledText">[ProductName] has no independently selectable features.</String>
<String Id="MaintenanceTypeDlgChangeText">Lets you change the way features are installed.</String>
<String Id="MaintenanceTypeDlgDescription">Select the operation you wish to perform.</String>
<String Id="MaintenanceTypeDlgRemoveButton">&amp;Remove</String>
<String Id="MaintenanceTypeDlgRemoveButtonTooltip">Remove Installation</String>
<String Id="MaintenanceTypeDlgRemoveDisabledText">[ProductName] cannot be removed.</String>
<String Id="MaintenanceTypeDlgRemoveText">Removes [ProductName] from your computer.</String>
<String Id="MaintenanceTypeDlgRepairButton">Re&amp;pair</String>
<String Id="MaintenanceTypeDlgRepairButtonTooltip">Repair Installation</String>
<String Id="MaintenanceTypeDlgRepairDisabledText">[ProductName] cannot be repaired.</String>
<String Id="MaintenanceTypeDlgRepairText">Repairs errors in the most recent installation by fixing missing and corrupt files, shortcuts, and registry entries.</String>
<String Id="MaintenanceTypeDlgTitle">{\UI_Font_Title}Change, repair, or remove installation</String>
<String Id="MaintenanceTypeDlg_Title">[ProductName] Setup</String>
<String Id="MaintenanceWelcomeDlgDescription">This setup wizard allows you to change the way [ProductName] features are installed on your computer or to remove it from your computer. Click Next to continue or Cancel to exit.</String>
<String Id="MaintenanceWelcomeDlgTitle">{\UI_Font_Bigger}Welcome to the [ProductName] Setup</String>
<String Id="MaintenanceWelcomeDlg_Title">[ProductName] Setup</String>
<String Id="MessageQueuingExecuteInstall">Configuring message queues</String>
<String Id="MessageQueuingExecuteInstallTemplate">Queue: [1]</String>
<String Id="MessageQueuingExecuteUninstall">Configuring message queues</String>
<String Id="MessageQueuingExecuteUninstallTemplate">Queue: [1]</String>
<String Id="MsiRMFilesInUseDescription">Some files that need to be updated are currently in use.</String>
<String Id="MsiRMFilesInUseDontUseRM">&amp;Do not close applications. A reboot will be required.</String>
<String Id="MsiRMFilesInUseText">The following applications are using files that need to be updated by this setup. You can let the setup close them and attempt to restart them or reboot the machine later.</String>
<String Id="MsiRMFilesInUseTitle">{\UI_Font_Title}Files in Use</String>
<String Id="MsiRMFilesInUseUseRM">&amp;Close the applications and attempt to restart them.</String>
<String Id="MsiRMFilesInUse_Title">[ProductName] Setup</String>
<String Id="OutOfDiskDlgDescription">Disk space required for the installation exceeds available disk space.</String>
<String Id="OutOfDiskDlgText">The highlighted volumes do not have enough disk space available for the currently selected features. You can remove some files from the highlighted volumes, install fewer features, or select a different destination drive.</String>
<String Id="OutOfDiskDlgTitle">{\UI_Font_Title}Out of Disk Space</String>
<String Id="OutOfDiskDlgVolumeList">{120}{70}{70}{70}{70}</String>
<String Id="OutOfDiskDlg_Title">[ProductName] Setup</String>
<String Id="OutOfRbDiskDlgDescription">Disk space required for the installation exceeds available disk space.</String>
<String Id="OutOfRbDiskDlgText">The highlighted volumes do not have enough disk space available for the currently selected features. You can remove some files from the highlighted volumes, install fewer features, or select a different destination drive.</String>
<String Id="OutOfRbDiskDlgText2">Alternatively, you may choose to disable the installer's rollback functionality. Disabling rollback prevents the installer from restoring your computer's original state should the installation be interrupted in any way. Click Yes if you wish to take the risk of disabling rollback.</String>
<String Id="OutOfRbDiskDlgTitle">{\UI_Font_Title}Out of Disk Space</String>
<String Id="OutOfRbDiskDlgVolumeList">{120}{70}{70}{70}{70}</String>
<String Id="OutOfRbDiskDlg_Title">[ProductName] Setup</String>
<String Id="PrepareDlgDescription">Please wait while the setup prepares to guide you through the installation.</String>
<String Id="PrepareDlgTitle">{\UI_Font_Bigger}Welcome to the [ProductName] Setup</String>
<String Id="PrepareDlg_Title">[ProductName] Setup</String>
<String Id="ProgressDlgProgressBar">Progress done</String>
<String Id="ProgressDlgStatusLabel">Status:</String>
<String Id="ProgressDlgTextChanging">Please wait while [ProductName] is changed.</String>
<String Id="ProgressDlgTextInstalling">Please wait while [ProductName] is installed.</String>
<String Id="ProgressDlgTextRemoving">Please wait while [ProductName] is removed.</String>
<String Id="ProgressDlgTextRepairing">Please wait while [ProductName] is repaired.</String>
<String Id="ProgressDlgTitleChanging">{\UI_Font_Title}Changing [ProductName]</String>
<String Id="ProgressDlgTitleInstalling">{\UI_Font_Title}Installing [ProductName]</String>
<String Id="ProgressDlgTitleRemoving">{\UI_Font_Title}Removing [ProductName]</String>
<String Id="ProgressDlgTitleRepairing">{\UI_Font_Title}Repairing [ProductName]</String>
<String Id="ProgressDlg_Title">[ProductName] Setup</String>
<String Id="ProgressTextAdvertise">Advertising application</String>
<String Id="ProgressTextAllocateRegistrySpace">Allocating registry space</String>
<String Id="ProgressTextAllocateRegistrySpaceTemplate">Free space: [1]</String>
<String Id="ProgressTextAppSearch">Searching for installed applications</String>
<String Id="ProgressTextAppSearchTemplate">Property: [1], Signature: [2]</String>
<String Id="ProgressTextBindImage">Binding executables</String>
<String Id="ProgressTextBindImageTemplate">File: [1]</String>
<String Id="ProgressTextCCPSearch">Searching for qualifying products</String>
<String Id="ProgressTextCostFinalize">Computing space requirements</String>
<String Id="ProgressTextCostInitialize">Computing space requirements</String>
<String Id="ProgressTextCreateFolders">Creating folders</String>
<String Id="ProgressTextCreateFoldersTemplate">Folder: [1]</String>
<String Id="ProgressTextCreateShortcuts">Creating shortcuts</String>
<String Id="ProgressTextCreateShortcutsTemplate">Shortcut: [1]</String>
<String Id="ProgressTextDeleteServices">Deleting services</String>
<String Id="ProgressTextDeleteServicesTemplate">Service: [1]</String>
<String Id="ProgressTextDuplicateFiles">Creating duplicate files</String>
<String Id="ProgressTextDuplicateFilesTemplate">File: [1],  Directory: [9],  Size: [6]</String>
<String Id="ProgressTextFileCost">Computing space requirements</String>
<String Id="ProgressTextFindRelatedProducts">Searching for related applications</String>
<String Id="ProgressTextFindRelatedProductsTemplate">Found application: [1]</String>
<String Id="ProgressTextGenerateScript">Generating script operations for action:</String>
<String Id="ProgressTextGenerateScriptTemplate">[1]</String>
<String Id="ProgressTextInstallAdminPackage">Copying network install files</String>
<String Id="ProgressTextInstallAdminPackageTemplate">File: [1], Directory: [9], Size: [6]</String>
<String Id="ProgressTextInstallFiles">Copying new files</String>
<String Id="ProgressTextInstallFilesTemplate">File: [1],  Directory: [9],  Size: [6]</String>
<String Id="ProgressTextInstallODBC">Installing ODBC components</String>
<String Id="ProgressTextInstallSFPCatalogFile">Installing system catalog</String>
<String Id="ProgressTextInstallSFPCatalogFileTemplate">File: [1],  Dependencies: [2]</String>
<String Id="ProgressTextInstallServices">Installing new services</String>
<String Id="ProgressTextInstallServicesTemplate">Service: [2]</String>
<String Id="ProgressTextInstallValidate">Validating install</String>
<String Id="ProgressTextLaunchConditions">Evaluating launch conditions</String>
<String Id="ProgressTextMigrateFeatureStates">Migrating feature states from related applications</String>
<String Id="ProgressTextMigrateFeatureStatesTemplate">Application: [1]</String>
<String Id="ProgressTextMoveFiles">Moving files</String>
<String Id="ProgressTextMoveFilesTemplate">File: [1],  Directory: [9],  Size: [6]</String>
<String Id="ProgressTextMsiPublishAssemblies">Publishing assembly information</String>
<String Id="ProgressTextMsiPublishAssembliesTemplate">Application Context:[1], Assembly Name:[2]</String>
<String Id="ProgressTextMsiUnpublishAssemblies">Unpublishing assembly information</String>
<String Id="ProgressTextMsiUnpublishAssembliesTemplate">Application Context:[1], Assembly Name:[2]</String>
<String Id="ProgressTextPatchFiles">Patching files</String>
<String Id="ProgressTextPatchFilesTemplate">File: [1],  Directory: [2],  Size: [3]</String>
<String Id="ProgressTextProcessComponents">Updating component registration</String>
<String Id="ProgressTextPublishComponents">Publishing Qualified Components</String>
<String Id="ProgressTextPublishComponentsTemplate">Component ID: [1], Qualifier: [2]</String>
<String Id="ProgressTextPublishFeatures">Publishing Product Features</String>
<String Id="ProgressTextPublishFeaturesTemplate">Feature: [1]</String>
<String Id="ProgressTextPublishProduct">Publishing product information</String>
<String Id="ProgressTextRMCCPSearch">Searching for qualifying products</String>
<String Id="ProgressTextRegisterClassInfo">Registering Class servers</String>
<String Id="ProgressTextRegisterClassInfoTemplate">Class Id: [1]</String>
<String Id="ProgressTextRegisterComPlus">Registering COM+ Applications and Components</String>
<String Id="ProgressTextRegisterComPlusTemplate">AppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}</String>
<String Id="ProgressTextRegisterExtensionInfo">Registering extension servers</String>
<String Id="ProgressTextRegisterExtensionInfoTemplate">Extension: [1]</String>
<String Id="ProgressTextRegisterFonts">Registering fonts</String>
<String Id="ProgressTextRegisterFontsTemplate">Font: [1]</String>
<String Id="ProgressTextRegisterMIMEInfo">Registering MIME info</String>
<String Id="ProgressTextRegisterMIMEInfoTemplate">MIME Content Type: [1], Extension: [2]</String>
<String Id="ProgressTextRegisterProduct">Registering product</String>
<String Id="ProgressTextRegisterProductTemplate">[1]</String>
<String Id="ProgressTextRegisterProgIdInfo">Registering program identifiers</String>
<String Id="ProgressTextRegisterProgIdInfoTemplate">ProgId: [1]</String>
<String Id="ProgressTextRegisterTypeLibraries">Registering type libraries</String>
<String Id="ProgressTextRegisterTypeLibrariesTemplate">LibID: [1]</String>
<String Id="ProgressTextRegisterUser">Registering user</String>
<String Id="ProgressTextRegisterUserTemplate">[1]</String>
<String Id="ProgressTextRemoveDuplicateFiles">Removing duplicated files</String>
<String Id="ProgressTextRemoveDuplicateFilesTemplate">File: [1], Directory: [9]</String>
<String Id="ProgressTextRemoveEnvironmentStrings">Updating environment strings</String>
<String Id="ProgressTextRemoveEnvironmentStringsTemplate">Name: [1], Value: [2], Action [3]</String>
<String Id="ProgressTextRemoveExistingProducts">Removing applications</String>
<String Id="ProgressTextRemoveExistingProductsTemplate">Application: [1], Command line: [2]</String>
<String Id="ProgressTextRemoveFiles">Removing files</String>
<String Id="ProgressTextRemoveFilesTemplate">File: [1], Directory: [9]</String>
<String Id="ProgressTextRemoveFolders">Removing folders</String>
<String Id="ProgressTextRemoveFoldersTemplate">Folder: [1]</String>
<String Id="ProgressTextRemoveIniValues">Removing INI files entries</String>
<String Id="ProgressTextRemoveIniValuesTemplate">File: [1],  Section: [2],  Key: [3], Value: [4]</String>
<String Id="ProgressTextRemoveODBC">Removing ODBC components</String>
<String Id="ProgressTextRemoveRegistryValues">Removing system registry values</String>
<String Id="ProgressTextRemoveRegistryValuesTemplate">Key: [1], Name: [2]</String>
<String Id="ProgressTextRemoveShortcuts">Removing shortcuts</String>
<String Id="ProgressTextRemoveShortcutsTemplate">Shortcut: [1]</String>
<String Id="ProgressTextRollback">Rolling back action:</String>
<String Id="ProgressTextRollbackCleanup">Removing backup files</String>
<String Id="ProgressTextRollbackCleanupTemplate">File: [1]</String>
<String Id="ProgressTextRollbackTemplate">[1]</String>
<String Id="ProgressTextSelfRegModules">Registering modules</String>
<String Id="ProgressTextSelfRegModulesTemplate">File: [1], Folder: [2]</String>
<String Id="ProgressTextSelfUnregModules">Unregistering modules</String>
<String Id="ProgressTextSelfUnregModulesTemplate">File: [1], Folder: [2]</String>
<String Id="ProgressTextSetODBCFolders">Initializing ODBC directories</String>
<String Id="ProgressTextStartServices">Starting services</String>
<String Id="ProgressTextStartServicesTemplate">Service: [1]</String>
<String Id="ProgressTextStopServices">Stopping services</String>
<String Id="ProgressTextStopServicesTemplate">Service: [1]</String>
<String Id="ProgressTextUnmoveFiles">Removing moved files</String>
<String Id="ProgressTextUnmoveFilesTemplate">File: [1], Directory: [9]</String>
<String Id="ProgressTextUnpublishComponents">Unpublishing Qualified Components</String>
<String Id="ProgressTextUnpublishComponentsTemplate">Component ID: [1], Qualifier: [2]</String>
<String Id="ProgressTextUnpublishFeatures">Unpublishing Product Features</String>
<String Id="ProgressTextUnpublishFeaturesTemplate">Feature: [1]</String>
<String Id="ProgressTextUnpublishProduct">Unpublishing product information</String>
<String Id="ProgressTextUnregisterClassInfo">Unregister Class servers</String>
<String Id="ProgressTextUnregisterClassInfoTemplate">Class Id: [1]</String>
<String Id="ProgressTextUnregisterComPlus">Unregistering COM+ Applications and Components</String>
<String Id="ProgressTextUnregisterComPlusTemplate">AppId: [1]{{, AppType: [2]}}</String>
<String Id="ProgressTextUnregisterExtensionInfo">Unregistering extension servers</String>
<String Id="ProgressTextUnregisterExtensionInfoTemplate">Extension: [1]</String>
<String Id="ProgressTextUnregisterFonts">Unregistering fonts</String>
<String Id="ProgressTextUnregisterFontsTemplate">Font: [1]</String>
<String Id="ProgressTextUnregisterMIMEInfo">Unregistering MIME info</String>
<String Id="ProgressTextUnregisterMIMEInfoTemplate">MIME Content Type: [1], Extension: [2]</String>
<String Id="ProgressTextUnregisterProgIdInfo">Unregistering program identifiers</String>
<String Id="ProgressTextUnregisterProgIdInfoTemplate">ProgId: [1]</String>
<String Id="ProgressTextUnregisterTypeLibraries">Unregistering type libraries</String>
<String Id="ProgressTextUnregisterTypeLibrariesTemplate">LibID: [1]</String>
<String Id="ProgressTextWriteEnvironmentStrings">Updating environment strings</String>
<String Id="ProgressTextWriteEnvironmentStringsTemplate">Name: [1], Value: [2], Action [3]</String>
<String Id="ProgressTextWriteIniValues">Writing INI files values</String>
<String Id="ProgressTextWriteIniValuesTemplate">File: [1],  Section: [2],  Key: [3], Value: [4]</String>
<String Id="ProgressTextWriteRegistryValues">Writing system registry values</String>
<String Id="ProgressTextWriteRegistryValuesTemplate">Key: [1], Name: [2], Value: [3]</String>
<String Id="RegisterComPlusAssemblies">Registering COM+ components</String>
<String Id="RegisterComPlusAssembliesTemplate">DLL: [1]</String>
<String Id="RemoveComPlusApplicationRoles">Removing COM+ application roles</String>
<String Id="RemoveComPlusApplicationRolesTemplate">Role: [1]</String>
<String Id="RemoveComPlusApplications">Removing COM+ applications</String>
<String Id="RemoveComPlusApplicationsTemplate">Application: [1]</String>
<String Id="RemoveComPlusPartitionUsers">Removing default COM+ partitions for users</String>
<String Id="RemoveComPlusPartitionUsersTemplate">User: [1]</String>
<String Id="RemoveComPlusPartitions">Removing COM+ partitions</String>
<String Id="RemoveComPlusPartitionsTemplate">Partition: [1]</String>
<String Id="RemoveComPlusRoleAssignments">Removing role assignments from COM+ components</String>
<String Id="RemoveComPlusRoleAssignmentsTemplate">Component: [1]</String>
<String Id="RemoveSubscriptionsComPlusComponents">Removing subscriptions for COM+ components</String>
<String Id="RemoveSubscriptionsComPlusComponentsTemplate">Subscription: [1]</String>
<String Id="RemoveUsersFromComPlusApplicationRoles">Removing users from COM+ application roles</String>
<String Id="RemoveUsersFromComPlusApplicationRolesTemplate">User: [1]</String>
<String Id="RemoveUsersFromComPlusPartitionRoles">Removing users from COM+ partition roles</String>
<String Id="RemoveUsersFromComPlusPartitionRolesTemplate">Role: [1]</String>
<String Id="ResumeDlgDescription">The setup will complete the installation of [ProductName] on your computer. Click Install to continue or Cancel to exit.</String>
<String Id="ResumeDlgInstall">&amp;Install</String>
<String Id="ResumeDlgTitle">{\UI_Font_Bigger}Resuming the [ProductName] Setup</String>
<String Id="ResumeDlg_Title">[ProductName] Setup</String>
<String Id="RollbackExecuteSqlStrings">Rolling back SQL Strings</String>
<String Id="RollbackMetabaseTransaction">Rolling back IIS Metabase Transaction</String>
<String Id="SetupTypeDlgCompleteButton">C&amp;omplete</String>
<String Id="SetupTypeDlgCompleteButtonTooltip">Complete Installation</String>
<String Id="SetupTypeDlgCompleteText">All program features will be installed. Requires the most disk space.</String>
<String Id="SetupTypeDlgCustomButton">C&amp;ustom</String>
<String Id="SetupTypeDlgCustomButtonTooltip">Custom Installation</String>
<String Id="SetupTypeDlgCustomText">Allows users to choose which program features will be installed and where they will be installed. Recommended for advanced users.</String>
<String Id="SetupTypeDlgDescription">Choose the setup type that best suits your needs</String>
<String Id="SetupTypeDlgTitle">{\UI_Font_Title}Choose Setup Type</String>
<String Id="SetupTypeDlgTypicalButton">&amp;Typical</String>
<String Id="SetupTypeDlgTypicalButtonTooltip">Typical Installation</String>
<String Id="SetupTypeDlgTypicalText">Installs the most common program features. Recommended for most users.</String>
<String Id="SetupTypeDlg_Title">[ProductName] Setup</String>
<String Id="StartMetabaseTransaction">Starting IIS Metabase Transaction</String>
<String Id="UIButtonBack">&amp;Back</String>
<String Id="UIButtonCancel">Cancel</String>
<String Id="UIButtonFinish">&amp;Finish</String>
<String Id="UIButtonIgnore">&amp;Ignore</String>
<String Id="UIButtonNext">&amp;Next</String>
<String Id="UIButtonNo">&amp;No</String>
<String Id="UIButtonOK">OK</String>
<String Id="UIButtonPrint">&amp;Print</String>
<String Id="UIButtonRetry">&amp;Retry</String>
<String Id="UIButtonYes">&amp;Yes</String>
<String Id="UIDiskPrompt">[ProductName] Installation [1]</String>
<String Id="UITextGB">GB</String>
<String Id="UITextKB">KB</String>
<String Id="UITextMB">MB</String>
<String Id="UITextMenuAbsent">Entire feature will be unavailable</String>
<String Id="UITextMenuAdvertise">Feature will be installed when required</String>
<String Id="UITextMenuAllCD">Entire feature will be installed to run from CD</String>
<String Id="UITextMenuAllLocal">Entire feature will be installed on local hard drive</String>
<String Id="UITextMenuAllNetwork">Entire feature will be installed to run from network</String>
<String Id="UITextMenuCD">Will be installed to run from CD</String>
<String Id="UITextMenuLocal">Will be installed on local hard drive</String>
<String Id="UITextMenuNetwork">Will be installed to run from network</String>
<String Id="UITextScriptInProgress">Gathering required information...</String>
<String Id="UITextSelAbsentAbsent">This feature will remain uninstalled</String>
<String Id="UITextSelAbsentAdvertise">This feature will be set to be installed when required</String>
<String Id="UITextSelAbsentCD">This feature will be installed to run from CD</String>
<String Id="UITextSelAbsentLocal">This feature will be installed on the local hard drive</String>
<String Id="UITextSelAbsentNetwork">This feature will be installed to run from the network</String>
<String Id="UITextSelAdvertiseAbsent">This feature will become unavailable</String>
<String Id="UITextSelAdvertiseAdvertise">Will be installed when required</String>
<String Id="UITextSelAdvertiseCD">This feature will be available to run from CD</String>
<String Id="UITextSelAdvertiseLocal">This feature will be installed on your local hard drive</String>
<String Id="UITextSelAdvertiseNetwork">This feature will be available to run from the network</String>
<String Id="UITextSelCDAbsent">This feature will be uninstalled completely, you won't be able to run it from CD</String>
<String Id="UITextSelCDAdvertise">This feature will change from run from CD state to set to be installed when required</String>
<String Id="UITextSelCDCD">This feature will remain to be run from CD</String>
<String Id="UITextSelCDLocal">This feature will change from run from CD state to be installed on the local hard drive</String>
<String Id="UITextSelChildCostNeg">This feature frees up [1] on your hard drive.</String>
<String Id="UITextSelChildCostPos">This feature requires [1] on your hard drive.</String>
<String Id="UITextSelCostPending">Compiling cost for this feature...</String>
<String Id="UITextSelLocalAbsent">This feature will be completely removed</String>
<String Id="UITextSelLocalAdvertise">This feature will be removed from your local hard drive, but will be set to be installed when required</String>
<String Id="UITextSelLocalCD">This feature will be removed from your local hard drive, but will be still available to run from CD</String>
<String Id="UITextSelLocalLocal">This feature will remain on you local hard drive</String>
<String Id="UITextSelLocalNetwork">This feature will be removed from your local hard drive, but will be still available to run from the network</String>
<String Id="UITextSelNetworkAbsent">This feature will be uninstalled completely, you won't be able to run it from the network</String>
<String Id="UITextSelNetworkAdvertise">This feature will change from run from network state to set to be installed when required</String>
<String Id="UITextSelNetworkLocal">This feature will change from run from network state to be installed on the local hard drive</String>
<String Id="UITextSelNetworkNetwork">This feature will remain to be run from the network</String>
<String Id="UITextSelParentCostNegNeg">This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive.</String>
<String Id="UITextSelParentCostNegPos">This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.</String>
<String Id="UITextSelParentCostPosNeg">This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive.</String>
<String Id="UITextSelParentCostPosPos">This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.</String>
<String Id="UITextTimeRemaining">Time remaining: {[1] minutes }{[2] seconds}</String>
<String Id="UITextVolumeCostAvailable">Available</String>
<String Id="UITextVolumeCostDifference">Difference</String>
<String Id="UITextVolumeCostRequired">Required</String>
<String Id="UITextVolumeCostSize">Disk Size</String>
<String Id="UITextVolumeCostVolume">Volume</String>
<String Id="UITextbytes">bytes</String>
<String Id="UnregisterComPlusAssemblies">Unregistering COM+ components</String>
<String Id="UnregisterComPlusAssembliesTemplate">DLL: [1]</String>
<String Id="UserExitDescription1">[ProductName] setup was interrupted. Your system has not been modified. To install this program at a later time, please run the setup again.</String>
<String Id="UserExitDescription2">Click the Finish button to exit.</String>
<String Id="UserExitTitle">{\UI_Font_Bigger}[ProductName] Setup was interrupted</String>
<String Id="UserExit_Title">[ProductName] Setup</String>
<String Id="UserProfileDlgTitle">{\UI_Font_Title}User Profile</String>
<String Id="UserProfileDlg_AU">All Users</String>
<String Id="UserProfileDlg_CU">Current User</String>
<String Id="UserProfileDlg_Description">Install for current user or all users</String>
<String Id="UserProfileDlg_Message">This application can be installed for the current user or for all users that share this computer. You must have administrator rights to install for all users. Install this application for:</String>
<String Id="UserProfileDlg_Title">[ProductName] Setup</String>
<String Id="VerifyReadyDlgChange">&amp;Change</String>
<String Id="VerifyReadyDlgChangeText">Click Change to begin the installation. Click Back to review or change any of your installation settings. Click Cancel to exit.</String>
<String Id="VerifyReadyDlgChangeTitle">{\UI_Font_Title}Ready to change [ProductName]</String>
<String Id="VerifyReadyDlgInstall">&amp;Install</String>
<String Id="VerifyReadyDlgInstallText">Click Install to begin the installation. Click Back to review or change any of your installation settings. Click Cancel to exit.</String>
<String Id="VerifyReadyDlgInstallTitle">{\UI_Font_Title}Ready to install [ProductName]</String>
<String Id="VerifyReadyDlgRemove">&amp;Remove</String>
<String Id="VerifyReadyDlgRemoveText">Click Remove to remove [ProductName] from your computer. Click Back to review or change any of your installation settings. Click Cancel to exit.</String>
<String Id="VerifyReadyDlgRemoveTitle">{\UI_Font_Title}Ready to remove [ProductName]</String>
<String Id="VerifyReadyDlgRepair">Re&amp;pair</String>
<String Id="VerifyReadyDlgRepairText">Click Repair to repair the installation of [ProductName]. Click Back to review or change any of your installation settings. Click Cancel to exit.</String>
<String Id="VerifyReadyDlgRepairTitle">{\UI_Font_Title}Ready to repair [ProductName]</String>
<String Id="VerifyReadyDlg_Title">[ProductName] Setup</String>
<String Id="WaitForCostingDlgIcon">WixUI_Ico_Exclam</String>
<String Id="WaitForCostingDlgIconTooltip">Exclamation icon</String>
<String Id="WaitForCostingDlgReturn">&amp;Return</String>
<String Id="WaitForCostingDlgText">Please wait while the installer finishes determining your disk space requirements.</String>
<String Id="WaitForCostingDlg_Title">[ProductName] Setup</String>
<String Id="WelcomeDlgDescription">The setup will install [ProductName] on your computer. Click Next to continue or Cancel to exit.</String>
<String Id="WelcomeDlgTitle">{\UI_Font_Bigger}Welcome to the [ProductName] Setup</String>
<String Id="WelcomeDlg_Title">[ProductName] Setup</String>
<String Id="WelcomeEulaDlgInstall">&amp;Install</String>
<String Id="WelcomeEulaDlgLicenseAcceptedCheckBox">I &amp;accept the terms of this License Agreement</String>
<String Id="WelcomeEulaDlgTitle">{\UI_Font_Title}Please read the [ProductName] License Agreement</String>
<String Id="WelcomeEulaDlg_Title">[ProductName] Setup</String>
<String Id="WriteMetabaseChanges">Installing Metabase Keys and Values</String>
<String Id="msierrComPlusApplicationDependency">Another entity is dependent on a COM+ application that is not being installed.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusApplicationIdConflict">A COM+ application with the same id already exists.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusApplicationNameConflict">A COM+ application with the same name already exists.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusApplicationNotFound">The COM+ application was not found.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusApplicationReadFailed">Failed to read COM+ applications.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusApplicationRoleConflict">A COM+ application role with the same name already exists.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusApplicationRoleDependency">Another entity is dependent on a COM+ application role that is not being installed.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusApplicationRoleNotFound">The COM+ application role was not found.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusApplicationRoleReadFailed">Failed to read COM+ application roles.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusAssembliesReadFailed">Failed to read COM+ assemblies.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusAssemblyDependency">Another entity is dependent on a COM+ assembly that is not being installed.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusCannotConnect">Cannot connect to the COM+ admin catalog.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusFailedLookupNames">Failed to lookup user account names.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusPartitionDependency">Another entity is dependent on a COM+ partition that is not being installed.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusPartitionIdConflict">A COM+ partition with the same id already exists.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusPartitionNameConflict">A COM+ partition with the same name already exists.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusPartitionNotFound">The COM+ partition was not found.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusPartitionReadFailed">Failed to read COM+ partitions.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusPartitionRoleReadFailed">Failed to read COM+ partition roles.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusPartitionUserReadFailed">Failed to read COM+ partition users.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusSubscriptionIdConflict">A COM+ component event subscription with the same id already exists.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusSubscriptionNameConflict">A COM+ component event subscription with the same name already exists.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusSubscriptionReadFailed">Failed to read COM+ event subscriptions.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusUserInApplicationRoleReadFailed">Failed to read COM+ users in application roles.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrComPlusUserInPartitionRoleReadFailed">Failed to read COM+ users in partition roles.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISCannotConnect">Cannot connect to Internet Information Server.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedCreateApp">Failed to create web application.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedCreateKey">Failed to create metabase key.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedDeleteKey">Failed to delete metabase key.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedOpenKey">Failed to open metabase key.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedReadAppPool">Failed to read IIsAppPool table. ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedReadFilters">Failed to read IIsFilters table.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedReadMimeMap">Failed to read IIsMimeMap table. ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedReadProp">Failed to read the IIsProperty table. ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedReadVDirs">Failed to read IIsVirtualDirs table.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedReadWebDirs">Failed to read IIsWebDirs table.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedReadWebSite">Failed to read IIsWebSite table.   ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedReadWebSvcExt">Failed to read the IIsWebServiceExtension table. ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedInstallAppPool">Failed to schedule install of IIS AppPools.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedInstallFilters">Failed to schedule install of IIS Filters.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedInstallProp">Failed to schedule install of IIS Properties.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedInstallVDirs">Failed to schedule install of IIS Virtual Directories.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedInstallWebDirs">Failed to schedule install of IIS Web Directories.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedInstallWebSvcExt">Failed to schedule install of IIS Web Service Extensions.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedInstallWebs">Failed to schedule install of IIS Web Sites.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedTransaction">Failed to schedule transaction for changes to IIS.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedUninstallAppPool">Failed to schedule uninstall of IIS AppPools.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedUninstallFilters">Failed to schedule uninstall of IIS Filters.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedUninstallProp">Failed to schedule uninstall of IIS Properties.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedUninstallVDirs">Failed to schedule uninstall of IIS Virtual Directories.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedUninstallWebDirs">Failed to schedule uninstall of IIS Web Directories.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedUninstallWebSvcExt">Failed to schedule uninstall of IIS Web Service Extensions.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedSchedUninstallWebs">Failed to schedule uninstall of IIS Web Sites.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedStartTransaction">Failed to start IIS transaction. ([2]   [3]   [4]   [5])</String>
<String Id="msierrIISFailedWriteData">Failed to write data to metabase key.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrInstallPerfCounterData">Failed to install performance counters.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrPERFMONFailedRegisterDLL">Failed to register DLL with PerfMon.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrPERFMONFailedUnregisterDLL">Failed to unregister DLL with PerfMon.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrSMBFailedCreate">Failed to create network share.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrSMBFailedDrop">Failed to drop network share.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrSQLDatabaseAlreadyExists">The database [3] already exists do you wish to continue?</String>
<String Id="msierrSQLFailedConnectDatabase">Failed to connect to SQL database.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrSQLFailedCreateDatabase">Error [2]: failed to create SQL database: [3], error detail: [4].</String>
<String Id="msierrSQLFailedDropDatabase">Error [2]: failed to drop SQL database: [3], error detail: [4].</String>
<String Id="msierrSQLFailedExecString">Error [2]: failed to execute SQL string, error detail: [3], SQL key: [4] SQL string: [5]</String>
<String Id="msierrSecureObjectsFailedCreateSD">Failed to create security descriptor for [3]\[4], system error: [2]</String>
<String Id="msierrSecureObjectsFailedSet">Failed to set security descriptor on object [3], system error: [2]</String>
<String Id="msierrSecureObjectsUnknownType">Unknown Object Type [3], system error: [2]</String>
<String Id="msierrUSRFailedUserCreate">Failed to create user.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrUSRFailedUserCreateExists">Failed to create user because it already exists.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrUSRFailedUserCreatePswd">Failed to create user due to invalid password.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrUSRFailedUserGroupAdd">Failed to add user to group.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrUninstallPerfCounterData">Failed to uninstall performance counters.  ([2]   [3]   [4]   [5])</String>
<String Id="msierrXmlConfigFailedOpen">Failed to open XML file [3], system error: [2]</String>
<String Id="msierrXmlConfigFailedRead">There was a failure while configuring XML files.</String>
<String Id="msierrXmlConfigFailedSave">Failed to save changes to XML file [3], system error: [2]</String>
<String Id="msierrXmlConfigFailedSelect">Failed to find node: [3] in XML file: [4], system error: [2]</String>
<String Id="msierrXmlFileFailedOpen">Failed to open XML file [3], system error: [2]</String>
<String Id="msierrXmlFileFailedRead">There was a failure while configuring XML files.</String>
<String Id="msierrXmlFileFailedSave">Failed to save changes to XML file [3], system error: [2]</String>
<String Id="msierrXmlFileFailedSelect">Failed to find node: [3] in XML file: [4], system error: [2]</String>
</Language>
</Languages>
<TextStyles>
<TextStyle>
<Default>yes</Default>
<Id>UI_Font_Normal</Id>
<FaceName>MS Shell Dlg</FaceName>
<Size>8</Size>
<UseDefaultColor>yes</UseDefaultColor>
<Color format="hex">000000</Color>
<Bold>no</Bold>
<Italic>no</Italic>
<Underline>no</Underline>
<Strikeout>no</Strikeout>
</TextStyle>
<TextStyle>
<Default>no</Default>
<Id>UI_Font_Bigger</Id>
<FaceName>MS Shell Dlg</FaceName>
<Size>12</Size>
<UseDefaultColor>yes</UseDefaultColor>
<Color format="hex">000000</Color>
<Bold>no</Bold>
<Italic>no</Italic>
<Underline>no</Underline>
<Strikeout>no</Strikeout>
</TextStyle>
<TextStyle>
<Default>no</Default>
<Id>UI_Font_Title</Id>
<FaceName>MS Shell Dlg</FaceName>
<Size>9</Size>
<UseDefaultColor>yes</UseDefaultColor>
<Color format="hex">000000</Color>
<Bold>yes</Bold>
<Italic>no</Italic>
<Underline>no</Underline>
<Strikeout>no</Strikeout>
</TextStyle>
<TextStyle>
<Default>no</Default>
<Id>UI_Font_Emphasized</Id>
<FaceName>MS Shell Dlg</FaceName>
<Size>8</Size>
<UseDefaultColor>yes</UseDefaultColor>
<Color format="hex">000000</Color>
<Bold>no</Bold>
<Italic>yes</Italic>
<Underline>no</Underline>
<Strikeout>no</Strikeout>
</TextStyle>
</TextStyles>
</UIData>
<Features DefaultFeature="Complete">
<Feature>
<ID>Complete</ID>
<ParentFeatureID/>
<Title>Complete</Title>
<Description>Complete program features.</Description>
<AllowAbsent>yes</AllowAbsent>
<AllowAdvertise>no</AllowAdvertise>
<AdvertiseOnlyIfSupported>yes</AdvertiseOnlyIfSupported>
<AdvertiseIsDefaultState>no</AdvertiseIsDefaultState>
<EnableBrowseForFolder>no</EnableBrowseForFolder>
<ConfigurableDirectory/>
<InitialDisplayState>0</InitialDisplayState>
<InstallDefault>1</InstallDefault>
<Level>1</Level>
<Conditions/>
<Components>
<ComponentID>ATPP_New.application</ComponentID>
<ComponentID>ATPP_New.exe</ComponentID>
<ComponentID>ATPP_New.exe.manifest</ComponentID>
<ComponentID>ATPP_New.pdb</ComponentID>
<ComponentID>ATPP_New.vshost.exe</ComponentID>
<ComponentID>ATPP_New.vshost.exe.config</ComponentID>
<ComponentID>Telerik.Reporting.dll</ComponentID>
<ComponentID>Telerik.ReportViewer.WinForms.dll</ComponentID>
<ComponentID>ATPP_New.exe.config</ComponentID>
</Components>
<MergeModules/>
</Feature>
</Features>
<MergeModules/>
<LaunchConditions>
<OSConditions>
<array_item>32768</array_item>
<array_item>65535</array_item>
<array_item>65535</array_item>
<array_item>65535</array_item>
<array_item>65535</array_item>
<array_item>65535</array_item>
<array_item>65535</array_item>
<array_item>65535</array_item>
<array_item>65535</array_item>
<array_item>65535</array_item>
</OSConditions>
<RAM>0</RAM>
<ScreenWidth>0</ScreenWidth>
<ScreenHeight>0</ScreenHeight>
<ColorDepth>0</ColorDepth>
<WIVersion/>
<CustomLaunchConditions/>
</LaunchConditions>
<SearchProperties/>
<CustomActions/>
<MediaItems>
<MediaItem ID="1" DiskPrompt="Disk 1" Type="0" CompressionLevel="3" EmbedCabInMSI="yes" CabFilename="setup.cab" OutputSubFolder="" VolumeLabel=""/>
</MediaItems>
</SUFWIProject>

Commits for ChrisCompleteCodeTrunk/ATTP/ATPP_New_Install/Untitled.msifact

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Wed 22 Aug, 2018 20:08:03 +0000