-
Notifications
You must be signed in to change notification settings - Fork 3
/
OSEHRA_VISTA_GUI_Demo.wxs
1260 lines (1250 loc) · 128 KB
/
OSEHRA_VISTA_GUI_Demo.wxs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2017 The Open Source Electronic Health Record Alliance
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="{264dadea-4b47-4672-9a8c-d320cb5b689a}" Codepage="1252" Language="1033" Manufacturer="OSEHRA" Name="OSEHRA VistA GUI Demo" UpgradeCode="{166FF928-9037-4A06-834A-CF4C5F879260}" Version="1.0.31.118">
<Package InstallPrivileges="elevated" Comments="This installer database contains the logic and data required to install VA CPRS Demo." Compressed="yes" Description="VA CPRS Demo" InstallerVersion="300" Keywords="Installer, MSI, Database" Languages="1033" Manufacturer="Dept. of Veterans Affairs" ReadOnly="no" />
<Binary Id="New" SourceFile=".\Binary\New" />
<Binary Id="Up" SourceFile=".\Binary\Up" />
<Binary Id="aicustact.dll" SourceFile=".\Binary\aicustact.dll" />
<Binary Id="cmdlinkarrow" SourceFile=".\Binary\cmdlinkarrow" />
<Binary Id="completi" SourceFile=".\Binary\completi" />
<Binary Id="custicon" SourceFile=".\Binary\custicon" />
<Binary Id="default_banner.bmp" SourceFile=".\Binary\default_banner.bmp" />
<Binary Id="default_dialog.bmp" SourceFile=".\Binary\default_dialog.bmp" />
<Binary Id="exclamic" SourceFile=".\Binary\exclamic" />
<Binary Id="info" SourceFile=".\Binary\info" />
<Binary Id="insticon" SourceFile=".\Binary\insticon" />
<Binary Id="removico" SourceFile=".\Binary\removico" />
<Binary Id="repairic" SourceFile=".\Binary\repairic" />
<Condition Message="[ProductName] cannot be installed on [WindowsFamily9X]">VersionNT</Condition>
<Condition Message="[ProductName] cannot be installed on systems earlier than [WindowsTypeNT]">Version9X OR VersionNT64 OR ((VersionNT > 500) OR ((VersionNT = 500) AND (ServicePackLevel >= 3)))</Condition>
<CustomAction Id="AI_SET_ADMIN" Property="AI_ADMIN" Value="1" />
<CustomAction Id="AI_DOWNGRADE" Error="4010" />
<CustomAction Id="AI_PREPARE_UPGRADE" BinaryKey="aicustact.dll" DllEntry="PrepareUpgrade" Return="ignore" />
<CustomAction Id="AI_RESTORE_LOCATION" BinaryKey="aicustact.dll" DllEntry="RestoreLocation" Return="ignore" />
<CustomAction Id="AI_SET_INSTALL" Property="AI_INSTALL" Value="1" />
<CustomAction Id="AI_SET_MAINT" Property="AI_MAINT" Value="1" />
<CustomAction Id="AI_SET_PATCH" Property="AI_PATCH" Value="1" />
<CustomAction Id="AI_SET_RESUME" Property="AI_RESUME" Value="1" />
<CustomAction Id="AI_STORE_LOCATION" Property="ARPINSTALLLOCATION" Value="[APPDIR]" />
<CustomAction Id="SET_APPDIR" Property="APPDIR" Value="[ProgramFilesFolder]\VistA" Execute="firstSequence" />
<CustomAction Id="SET_SHORTCUTDIR" Property="SHORTCUTDIR" Value="[ProgramFilesFolder]\VistA\CPRS" Execute="firstSequence" />
<CustomAction Id="SET_TARGETDIR_TO_APPDIR" Property="TARGETDIR" Value="[APPDIR]" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="APPDIR" Name="APPDIR" SourceName=".">
<Directory Id="VITALS_DIR" Name="VITALS">
<Component Id="Vitals.exe" Guid="{B846D86E-5F62-45BF-9C33-119EB572F1EE}">
<File Id="Vitals.exe" Name="Vitals.exe" KeyPath="no" Vital="no" DiskId="1" Source=".\File\Vitals.exe" />
<Shortcut Advertise="no" Id="Vitals.exe_1" Directory="DesktopFolder" Name="OSEHRA Vitals Demo" Target="[#Vitals.exe]" Description="Vitals.exe" Arguments="/ccow=disable /server=demo.osehra.org /port=9430" Hotkey="0" IconIndex="0" Show="normal" WorkingDirectory="VITALS_DIR" />
</Component>
<Component Id="VitalsManager.exe" Guid="{78A38AA3-A528-41B1-9733-B37EAB66965A}">
<File Id="VitalsManager.exe" Name="VitalsManager.exe" KeyPath="no" Vital="no" DiskId="1" Source=".\File\VitalsManager.exe" />
<Shortcut Advertise="no" Id="VitalsManager.exe_1" Directory="DesktopFolder" Name="OSEHRA Vitals Manager Demo" Target="[#VitalsManager.exe]" Description="VitalsManager.exe" Arguments="/ccow=disable /server=demo.osehra.org /port=9430" Hotkey="0" IconIndex="0" Show="normal" WorkingDirectory="VITALS_DIR" />
</Component>
</Directory>
<Directory Id="BCMA_DIR" Name="BCMA">
<Component Id="BCMA.exe" Guid="{6A6C390B-8A5F-4A96-A80E-241F1922147B}">
<File Id="BCMA.exe" Name="BCMA.exe" KeyPath="no" Vital="no" DiskId="1" Source=".\File\BCMA.exe" />
<Shortcut Advertise="no" Id="BCMA.exe_1" Directory="DesktopFolder" Name="OSEHRA BCMA Demo" Target="[#BCMA.exe]" Description="BCMA.exe" Arguments="CCOW=disable s=demo.osehra.org p=9430" Hotkey="0" IconIndex="0" Show="normal" WorkingDirectory="BCMA_DIR" />
</Component>
<Component Id="BCMApar.exe" Guid="{A5224179-EA4D-40DE-8D99-9AD999570C0D}">
<File Id="BCMApar.exe" Name="BCMApar.exe" KeyPath="no" Vital="no" DiskId="1" Source=".\File\BCMApar.exe" />
<Shortcut Advertise="no" Id="BCMApar.exe_1" Directory="DesktopFolder" Name="OSEHRA BCMA Parameters Demo" Target="[#BCMApar.exe]" Description="BCMApar.exe" Arguments="CCOW=disable s=demo.osehra.org p=9430" Hotkey="0" IconIndex="0" Show="normal" WorkingDirectory="BCMA_DIR" />
</Component>
<Component Id="BCMA.chm" Guid="{A1BFB77D-A0A2-434E-81BA-133FA7C9DDED}">
<File Id="BCMA.chm" Name="BCMA.chm" KeyPath="no" Vital="no" DiskId="1" Source=".\File\BCMA.chm" />
</Component>
<Component Id="BCMApar.chm" Guid="{3CD222C3-A207-4E06-92F2-C47C1E2DB0B4}">
<File Id="BCMApar.chm" Name="BCMApar.chm" KeyPath="no" Vital="no" DiskId="1" Source=".\File\BCMApar.chm" />
</Component>
<Component Id="BcmaOrderCom.dll" Guid="{F042046E-FEAC-47A2-9C64-FF9D3D575A78}">
<File Id="BcmaOrderCom.dll" Name="BcmaOrderCom.dll" KeyPath="yes" ReadOnly="yes" Vital="no" DiskId="1" Source=".\File\BcmaOrderCom.dll" />
<File Id="infolist.txt" Name="infolist.txt" ReadOnly="yes" Vital="no" DiskId="1" Source=".\File\infolist.txt" />
<File Id="ReadMe.txt" Name="ReadMe.txt" ReadOnly="yes" Vital="no" DiskId="1" Source=".\File\ReadMe.txt" />
</Component>
<Component Id="ROBOEX32.dll" Guid="{667801E6-783A-476C-BC07-69632A115F79}">
<File Id="ROBOEX32.dll" Name="ROBOEX32.dll" KeyPath="yes" ReadOnly="yes" Vital="no" DiskId="1" Source=".\File\ROBOEX32.dll" />
</Component>
</Directory>
<Directory Id="CPRS_DIR" Name="CPRS">
<Component Id="CPRS.cnt" Guid="{4434AD72-7DDF-4C6A-8EBB-A853ED6C100C}">
<File Id="CPRS.hlp" Name="CPRS.hlp" KeyPath="yes" Vital="no" DiskId="1" Source=".\File\CPRS.hlp" />
<File Id="CPRS.cnt" Name="CPRS.cnt" Vital="no" DiskId="1" Source=".\File\CPRS.cnt" />
</Component>
<Component Id="CPRSChart.exe" Guid="{5F1C7408-4351-4BBE-A61A-125EB39AEAB0}">
<File Id="CPRSChart.exe" Name="CPRSChart.exe" KeyPath="no" Vital="no" DiskId="1" Source=".\File\CPRSChart.exe" />
<Shortcut Advertise="no" Id="CPRSChart.exe_1" Directory="DesktopFolder" Name="OSEHRA CPRS Demo" Target="[#CPRSChart.exe]" Description="CPRSChart.exe" Arguments="CCOW=disable s=demo.osehra.org p=9430" Hotkey="0" IconIndex="0" Show="normal" WorkingDirectory="CPRS_DIR" />
</Component>
<Component Id="borlndmm.dll" Guid="{6D610C3F-518C-472B-A52C-F0BAF4814BC1}">
<File Id="borlndmm.dll" Name="borlndmm.dll" KeyPath="yes" ReadOnly="yes" Vital="no" DiskId="1" Source=".\File\borlndmm.dll" />
</Component>
</Directory>
<Directory Id="Common_Files_DIR" Name="Common Files">
<Component Id="GMV_VitalsViewEnter.cnt_1" Guid="{D5AC13D2-54EA-4A5B-8C77-4CD553D91D0B}">
<File Id="GMV_VitalsViewEnter.hlp" Name="GMV_VitalsViewEnter.hlp" KeyPath="yes" Vital="no" DiskId="1" Source=".\File\GMV_VitalsViewEnter.hlp" />
<File Id="GMV_VitalsViewEnter.cnt" Name="GMV_VitalsViewEnter.cnt" Vital="no" DiskId="1" Source=".\File\GMV_VitalsViewEnter.cnt" />
</Component>
<Component Id="GMV_VitalsViewEnter.dll" Guid="{8C47E358-B2C4-4B55-AD14-E77B7B795D0D}">
<File Id="GMV_VitalsViewEnter.dll" Name="GMV_VitalsViewEnter.dll" KeyPath="yes" Vital="no" DiskId="1" Source=".\File\GMV_VitalsViewEnter.dll" />
</Component>
<Component Id="Bapi32.dll" Guid="{40CD7E23-3D7E-4926-B1BB-5ED34887B0D9}">
<File Id="Bapi32.dll" Name="Bapi32.dll" KeyPath="yes" Vital="no" DiskId="1" Source=".\File\Bapi32.dll" />
</Component>
<Component Id="RPCSharedBrokerSessionMgr1.exe" Guid="{7902F0BD-1F07-47F1-945B-C378A8F37798}">
<Environment Id="PATH" Name="PATH" Value="[Common_Files_DIR]" Permanent="no" Part="first" Action="set" System="yes" />
<RegistryKey Root="HKLM" Key="SOFTWARE\Classes\WOW6432Node\CLSID\{EB44A5CD-1871-429F-A5BC-19C71B722182}">
<RegistryKey Key="LocalServer32">
<RegistryValue Type="integer" Name="SomeIntegerValue" Value="1" KeyPath="no"/>
<RegistryValue Type="string" Value="[Common_Files_DIR]\RPCSharedBrokerSessionMgr1.exe"/>
</RegistryKey>
<RegistryKey Key="ProgID">
<RegistryValue Type="integer" Name="SomeIntegerValue" Value="1" KeyPath="no"/>
<RegistryValue Type="string" Value="RPCSharedBrokerSessionMgr1.SharedBroker"/>
</RegistryKey>
</RegistryKey>
<RegistryKey Root="HKLM" Key="SOFTWARE\Classes\RPCSharedBrokerSessionMgr1.SharedBroker">
<RegistryKey Key="Clsid">
<RegistryValue Type="integer" Name="SomeIntegerValue" Value="1" KeyPath="no"/>
<RegistryValue Type="string" Value="{EB44A5CD-1871-429F-A5BC-19C71B722182}"/>
</RegistryKey>
</RegistryKey>
<File Id="RPCSharedBrokerSessionMgr1.exe" Name="RPCSharedBrokerSessionMgr1.exe" KeyPath="yes" Vital="no" DiskId="1" Source=".\File\RPCSharedBrokerSessionMgr1.exe" />
</Component>
</Directory>
</Directory>
<Directory Id="DesktopFolder" Name="DesktopFolder" />
</Directory>
<Feature Id="MainFeature" ConfigurableDirectory="APPDIR" Description="Description" Display="expand" Level="1" Title="MainFeature">
<ComponentRef Id="CPRS.cnt" />
<ComponentRef Id="CPRSChart.exe" />
<ComponentRef Id="GMV_VitalsViewEnter.cnt_1" />
<ComponentRef Id="GMV_VitalsViewEnter.dll" />
<ComponentRef Id="borlndmm.dll" />
<ComponentRef Id="Vitals.exe" />
<ComponentRef Id="VitalsManager.exe" />
<ComponentRef Id="BCMA.exe" />
<ComponentRef Id="BCMApar.exe" />
<ComponentRef Id="RPCSharedBrokerSessionMgr1.exe" />
<ComponentRef Id="BcmaOrderCom.dll" />
<ComponentRef Id="Bapi32.dll" />
<ComponentRef Id="ROBOEX32.dll" />
<ComponentRef Id="BCMA.chm" />
<ComponentRef Id="BCMApar.chm" />
</Feature>
<Media Id="1" Cabinet="disk1.cab" EmbedCab="yes" />
<Property Id="BannerBitmap" Value="default_banner.bmp" />
<Property Id="AppsShutdownOption" Value="All" />
<Property Id="DiskPrompt" Value="[1]" />
<Property Id="AI_BUILD_NAME" Value="DefaultBuild" />
<Property Id="AI_PACKAGE_TYPE" Value="Intel" />
<Property Id="ALLUSERS" Value="2" />
<Property Id="ARPCOMMENTS" Value="This installer database contains the logic and data required to install OSEHRA CPRS Demo." />
<Property Id="ARPHELPLINK" Value="mailto:[email protected]" />
<Property Id="ARPNOMODIFY" Value="1" />
<Property Id="ARPURLINFOABOUT" Value="http://www.osehra.org" />
<Property Id="ARPURLUPDATEINFO" Value="http://www.osehra.org" />
<Property Id="ButtonText_Back" Value="< &Back" />
<Property Id="ButtonText_Browse" Value="Br&owse..." />
<Property Id="ButtonText_Cancel" Value="Cancel" />
<Property Id="ButtonText_Exit" Value="&Exit" />
<Property Id="ButtonText_Finish" Value="&Finish" />
<Property Id="ButtonText_Ignore" Value="&Ignore" />
<Property Id="ButtonText_Install" Value="&Install" />
<Property Id="ButtonText_Next" Value="&Next >" />
<Property Id="ButtonText_No" Value="&No" />
<Property Id="ButtonText_OK" Value="OK" />
<Property Id="ButtonText_Remove" Value="&Remove" />
<Property Id="ButtonText_Repair" Value="&Repair" />
<Property Id="ButtonText_Reset" Value="&Reset" />
<Property Id="ButtonText_Resume" Value="&Resume" />
<Property Id="ButtonText_Retry" Value="&Retry" />
<Property Id="ButtonText_Return" Value="&Return" />
<Property Id="ButtonText_Yes" Value="&Yes" />
<Property Id="CompleteSetupIcon" Value="completi" />
<Property Id="CtrlEvtChanging" Value="Changing" />
<Property Id="CtrlEvtRemoving" Value="Removing" />
<Property Id="CtrlEvtRepairing" Value="Repairing" />
<Property Id="CtrlEvtchanges" Value="changes" />
<Property Id="CtrlEvtremoves" Value="removes" />
<Property Id="CtrlEvtrepairs" Value="repairs" />
<Property Id="CustomSetupIcon" Value="custicon" />
<Property Id="DefaultUIFont" Value="DlgFont8" />
<Property Id="DialogBitmap" Value="default_dialog.bmp" />
<Property Id="DlgTitleFont" Value="{\DlgFontBold8}" />
<Property Id="EnableUserControl" Value="1" />
<Property Id="ErrorDialog" Value="ErrorDlg" />
<Property Id="ExclamationIcon" Value="exclamic" />
<Property Id="INSTALLLEVEL" Value="3" />
<Property Id="InfoIcon" Value="info" />
<Property Id="InstallMode" Value="Typical" />
<Property Id="InstallModeComplete" Value="Complete" />
<Property Id="InstallModeCustom" Value="Custom" />
<Property Id="InstallModeTypical" Value="Typical" />
<Property Id="InstallerIcon" Value="insticon" />
<Property Id="PROMPTROLLBACKCOST" Value="P" />
<Property Id="Progress1" Value="Installing" />
<Property Id="Progress2" Value="installs" />
<Property Id="RemoveIcon" Value="removico" />
<Property Id="RepairIcon" Value="repairic" />
<Property Id="OLDPRODUCTS" Secure="yes" />
<Property Id="AI_NEWERPRODUCTFOUND" Secure="yes" />
<Property Id="Setup" Value="Setup" />
<Property Id="ShowUserRegistrationDlg" Value="0" />
<Property Id="WindowsFamily9X" Value="Windows 9x/ME" />
<Property Id="WindowsTypeNT" Value="Windows 2000 Service Pack 3" />
<Property Id="Wizard" Value="Setup Wizard" />
<UI>
<Error Id="0">{{Fatal error: }}</Error>
<Error Id="1">{{Error [1]. }}</Error>
<Error Id="2">Warning [1]. </Error>
<Error Id="3" />
<Error Id="4">Info [1]. </Error>
<Error Id="5">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]}}</Error>
<Error Id="6" />
<Error Id="7">{{Disk full: }}</Error>
<Error Id="8">Action [Time]: [1]. [2]</Error>
<Error Id="9">[ProductName]</Error>
<Error Id="10">{[2]}{, [3]}{, [4]}</Error>
<Error Id="11">Message type: [1], Argument: [2]</Error>
<Error Id="12">=== Logging started: [Date] [Time] ===</Error>
<Error Id="13">=== Logging stopped: [Date] [Time] ===</Error>
<Error Id="14">Action start [Time]: [1].</Error>
<Error Id="15">Action ended [Time]: [1]. Return value [2].</Error>
<Error Id="16">Time remaining: {[1] minutes }{[2] seconds}</Error>
<Error Id="17">Out of memory. Shut down other applications before retrying.</Error>
<Error Id="18">Installer is no longer responding.</Error>
<Error Id="19">Installer stopped prematurely.</Error>
<Error Id="20">Please wait while Windows configures [ProductName]</Error>
<Error Id="21">Gathering required information...</Error>
<Error Id="22">Removing older versions of this application...</Error>
<Error Id="23">Preparing to remove older versions of this application...</Error>
<Error Id="32">{[ProductName] }Setup completed successfully.</Error>
<Error Id="33">{[ProductName] }Setup failed.</Error>
<Error Id="1101">Error reading from file: [2]. {{ System error [3].}} Verify that the file exists and that you can access it.</Error>
<Error Id="1301">Cannot create the file '[2]'. A directory with this name already exists. Cancel the install and try installing to a different location.</Error>
<Error Id="1302">Please insert the disk: [2]</Error>
<Error Id="1303">The installer has insufficient privileges to access this directory: [2]. The installation cannot continue. Log on as administrator or contact your system administrator.</Error>
<Error Id="1304">Error writing to file: [2]. Verify that you have access to that directory.</Error>
<Error Id="1305">Error reading from file [2]. {{ System error [3].}} Verify that the file exists and that you can access it.</Error>
<Error Id="1306">Another application has exclusive access to the file '[2]'. Please shut down all other applications, then click "Retry".</Error>
<Error Id="1307">There is not enough disk space to install this file: [2]. Free some disk space and click "Retry", or click "Cancel" to exit.</Error>
<Error Id="1308">Source file not found: [2]. Verify that the file exists and that you can access it.</Error>
<Error Id="1309">Error reading from file: [3]. {{ System error [2].}} Verify that the file exists and that you can access it.</Error>
<Error Id="1310">Error writing to file: [3]. {{ System error [2].}} Verify that you have access to that directory.</Error>
<Error Id="1311">Source file not found{{(cabinet)}}: [2]. Verify that the file exists and that you can access it.</Error>
<Error Id="1312">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.</Error>
<Error Id="1313">The volume [2] is currently unavailable. Please select another.</Error>
<Error Id="1314">The specified path '[2]' is unavailable.</Error>
<Error Id="1315">Unable to write to the specified folder: [2].</Error>
<Error Id="1316">A network error occurred while attempting to read from the file: [2]</Error>
<Error Id="1317">An error occurred while attempting to create the directory: [2]</Error>
<Error Id="1318">A network error occurred while attempting to create the directory: [2]</Error>
<Error Id="1319">A network error occurred while attempting to open the source file cabinet: [2]</Error>
<Error Id="1320">The specified path is too long: [2]</Error>
<Error Id="1321">The Installer has insufficient privileges to modify this file: [2].</Error>
<Error Id="1322">A portion of the folder path '[2]' is invalid. It is either empty or exceeds the length allowed by the system.</Error>
<Error Id="1323">The folder path '[2]' contains words that are not valid in folder paths.</Error>
<Error Id="1324">The folder path '[2]' contains an invalid character.</Error>
<Error Id="1325">'[2]' is not a valid short file name.</Error>
<Error Id="1326">Error getting file security: [3] GetLastError: [2]</Error>
<Error Id="1327">Invalid Drive: [2]</Error>
<Error Id="1328">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]}}</Error>
<Error Id="1329">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.</Error>
<Error Id="1330">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.}}</Error>
<Error Id="1331">Failed to correctly copy [2] file: CRC error.</Error>
<Error Id="1332">Failed to correctly move [2] file: CRC error.</Error>
<Error Id="1333">Failed to correctly patch [2] file: CRC error.</Error>
<Error Id="1334">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.</Error>
<Error Id="1335">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.</Error>
<Error Id="1336">There was an error creating a temporary file that is needed to complete this installation.{{ Folder: [3]. System error code: [2]}}</Error>
<Error Id="1401">Could not create key: [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel. </Error>
<Error Id="1402">Could not open key: [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel. </Error>
<Error Id="1403">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. </Error>
<Error Id="1404">Could not delete key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel. </Error>
<Error Id="1405">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. </Error>
<Error Id="1406">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.</Error>
<Error Id="1407">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.</Error>
<Error Id="1408">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.</Error>
<Error Id="1409">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.</Error>
<Error Id="1410">Could not increase the available registry space. [2] KB of free registry space is required for the installation of this application.</Error>
<Error Id="1500">Another installation is in progress. You must complete that installation before continuing this one.</Error>
<Error Id="1501">Error accessing secured data. Please make sure the Windows Installer is configured properly and try the install again.</Error>
<Error Id="1502">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.</Error>
<Error Id="1503">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.</Error>
<Error Id="1601">Out of disk space -- Volume: '[2]'; required space: [3] KB; available space: [4] KB. Free some disk space and retry.</Error>
<Error Id="1602">Are you sure you want to cancel?</Error>
<Error Id="1603">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.</Error>
<Error Id="1604">The product '[2]' is already installed, preventing the installation of this product. The two products are incompatible.</Error>
<Error Id="1605">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.</Error>
<Error Id="1606">Could not access network location [2].</Error>
<Error Id="1607">The following applications should be closed before continuing the install:</Error>
<Error Id="1608">Could not find any previously installed compliant products on the machine for installing this product.</Error>
<Error Id="1609">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]}}</Error>
<Error Id="1701">The key [2] is not valid. Verify that you entered the correct key.</Error>
<Error Id="1702">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.</Error>
<Error Id="1703">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.</Error>
<Error Id="1704">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?</Error>
<Error Id="1705">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?</Error>
<Error Id="1706">An installation package for the product [2] cannot be found. Try the installation again using a valid copy of the installation package '[3]'.</Error>
<Error Id="1707">Installation completed successfully.</Error>
<Error Id="1708">Installation failed.</Error>
<Error Id="1709">Product: [2] -- [3]</Error>
<Error Id="1710">You may either restore your computer to its previous state or continue the install later. Would you like to restore?</Error>
<Error Id="1711">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.</Error>
<Error Id="1712">One or more of the files required to restore your computer to its previous state could not be found. Restoration will not be possible.</Error>
<Error Id="1713">[2] cannot install one of its required products. Contact your technical support group. {{System Error: [3].}}</Error>
<Error Id="1714">The older version of [2] cannot be removed. Contact your technical support group. {{System Error [3].}}</Error>
<Error Id="1715">Installed [2]</Error>
<Error Id="1716">Configured [2]</Error>
<Error Id="1717">Removed [2]</Error>
<Error Id="1718">File [2] was rejected by digital signature policy.</Error>
<Error Id="1719">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.</Error>
<Error Id="1720">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] }}</Error>
<Error Id="1721">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] }}</Error>
<Error Id="1722">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] }}</Error>
<Error Id="1723">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] }}</Error>
<Error Id="1724">Removal completed successfully.</Error>
<Error Id="1725">Removal failed.</Error>
<Error Id="1726">Advertisement completed successfully.</Error>
<Error Id="1727">Advertisement failed.</Error>
<Error Id="1728">Configuration completed successfully.</Error>
<Error Id="1729">Configuration failed.</Error>
<Error Id="1730">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.</Error>
<Error Id="1801">The path [2] is not valid. Please specify a valid path.</Error>
<Error Id="1802">Out of memory. Shut down other applications before retrying.</Error>
<Error Id="1803">There is no disk in drive [2]. Please insert one and click "Retry", or click "Cancel" to go back to the previously selected volume.</Error>
<Error Id="1804">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.</Error>
<Error Id="1805">The folder [2] does not exist. Please enter a path to an existing folder.</Error>
<Error Id="1806">You have insufficient privileges to read this folder.</Error>
<Error Id="1807">A valid destination folder for the install could not be determined.</Error>
<Error Id="1901">Error attempting to read from the source install database: [2].</Error>
<Error Id="1902">Scheduling reboot operation: Renaming file [2] to [3]. Must reboot to complete operation.</Error>
<Error Id="1903">Scheduling reboot operation: Deleting file [2]. Must reboot to complete operation.</Error>
<Error Id="1904">Module [2] failed to register. HRESULT [3]. Contact your support personnel.</Error>
<Error Id="1905">Module [2] failed to unregister. HRESULT [3]. Contact your support personnel.</Error>
<Error Id="1906">Failed to cache package [2]. Error: [3]. Contact your support personnel.</Error>
<Error Id="1907">Could not register font [2]. Verify that you have sufficient permissions to install fonts, and that the system supports this font.</Error>
<Error Id="1908">Could not unregister font [2]. Verify that you that you have sufficient permissions to remove fonts.</Error>
<Error Id="1909">Could not create Shortcut [2]. Verify that the destination folder exists and that you can access it.</Error>
<Error Id="1910">Could not remove Shortcut [2]. Verify that the shortcut file exists and that you can access it.</Error>
<Error Id="1911">Could not register type library for file [2]. Contact your support personnel.</Error>
<Error Id="1912">Could not unregister type library for file [2]. Contact your support personnel.</Error>
<Error Id="1913">Could not update the ini file [2][3]. Verify that the file exists and that you can access it.</Error>
<Error Id="1914">Could not schedule file [2] to replace file [3] on reboot. Verify that you have write permissions to file [3].</Error>
<Error Id="1915">Error removing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel.</Error>
<Error Id="1916">Error installing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel.</Error>
<Error Id="1917">Error removing ODBC driver: [4], ODBC error [2]: [3]. Verify that you have sufficient privileges to remove ODBC drivers.</Error>
<Error Id="1918">Error installing ODBC driver: [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it.</Error>
<Error Id="1919">Error configuring ODBC data source: [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it.</Error>
<Error Id="1920">Service '[2]' ([3]) failed to start. Verify that you have sufficient privileges to start system services.</Error>
<Error Id="1921">Service '[2]' ([3]) could not be stopped. Verify that you have sufficient privileges to stop system services.</Error>
<Error Id="1922">Service '[2]' ([3]) could not be deleted. Verify that you have sufficient privileges to remove system services.</Error>
<Error Id="1923">Service '[2]' ([3]) could not be installed. Verify that you have sufficient privileges to install system services.</Error>
<Error Id="1924">Could not update environment variable '[2]'. Verify that you have sufficient privileges to modify environment variables.</Error>
<Error Id="1925">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.</Error>
<Error Id="1926">Could not set file security for file '[3]'. Error: [2]. Verify that you have sufficient privileges to modify the security permissions for this file.</Error>
<Error Id="1927">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.</Error>
<Error Id="1928">Error registering COM+ Application. Contact your support personnel for more information.</Error>
<Error Id="1929">Error unregistering COM+ Application. Contact your support personnel for more information.</Error>
<Error Id="1930">The description for service '[2]' ([3]) could not be changed.</Error>
<Error Id="1931">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]}}</Error>
<Error Id="1932">The Windows Installer service cannot update the protected Windows file [2]. {{Package version: [3], OS Protected version: [4], SFP Error: [5]}}</Error>
<Error Id="1933">The Windows Installer service cannot update one or more protected Windows files. {{SFP Error: [2]. List of protected files:\r\n[3]}}</Error>
<Error Id="1934">User installations are disabled via policy on the machine.</Error>
<Error Id="1935">An error occured during the installation of assembly component [2]. HRESULT: [3]. {{assembly interface: [4], function: [5], assembly name: [6]}}</Error>
<Error Id="4000">Invalid serial number.</Error>
<Error Id="4001">Could not verify serial number.</Error>
<Error Id="4010">A more recent version of [ProductName] is already installed on this computer.</Error>
<Error Id="4020">There was an error during the IIS configuration process.
Your original IIS configuration will be restored.</Error>
<Error Id="4021">Web Site "[2]" already exists on this server.
Do you want to skip this web site and continue the installation ?</Error>
<Error Id="4022">Virtual Directory "[2]" on Web Site "[3]" already exists on this server.
Do you want to skip this virtual directory and continue the installation ?</Error>
<Error Id="4023">This version of IIS is not supported or IIS is not fully installed !
You need Internet Information Services 5.0 or above.</Error>
<Error Id="4024">A Web Site with the same Server Bindings is already started.
[2]</Error>
<Error Id="4025">Application Pool "[2]" already exists on this server.
Do you want to skip configuring this application pool and continue the installation ?</Error>
<Error Id="4101">Unable to create user account or group '[2]' on the local machine. Error Code: [3].</Error>
<Error Id="4102">User account or group '[2]' already exists on the local machine.</Error>
<Error Id="4103">Unable to remove user account or group '[2]' on the local machine. Error Code: [3].</Error>
<Error Id="4104">User account or group '[2]' does not exist on the local machine.</Error>
<Error Id="4105">An error was encountered while sharing '[2]' under name: '[3]'. Error description: [4]</Error>
<Error Id="4106">An error was encountered while creating a scheduled task: '[2]'. Error description: [3]</Error>
<Error Id="4107">An error was encountered while removing a scheduled task: '[2]'. Error description: [3]</Error>
<Error Id="4110">Could not allocate memory.</Error>
<Error Id="4111">File not found: [2].</Error>
<Error Id="4112">File '[2]' could not be read.</Error>
<Error Id="4113">Parse error in file: '[2]' at line: [3], column: [4]. ErrorCode: [5].</Error>
<Error Id="4114">Unsupported XML file encoding.</Error>
<Error Id="4115">Error opening file: [2].</Error>
<Error Id="4116">File '[2]' could not be written.</Error>
<Error Id="4117">Unexpected root element: "[2]" in XML file: '[3]'.</Error>
<Error Id="4120">There was an error during the Windows Firewall configuration process.
Your original Firewall configuration will be restored.</Error>
<Error Id="4121">Invalid Firewall process image path, or file not found: [2].</Error>
<Error Id="4122">Invalid Firewall port/protocol: [2].</Error>
<Error Id="4123">Invalid Firewall network scope: [2].</Error>
<Error Id="4124">There was an error registering application with Windows Firewall: [2].</Error>
<Error Id="4125">There was an error registering port with Windows Firewall: [2].</Error>
<Error Id="4130">There was an error during the Game Explorer configuration process.</Error>
<Error Id="4131">Parental Controls prevent you from playing game: [2].</Error>
<Error Id="4140">There was an error during the SQL script execution process.</Error>
<Error Id="4141">ODBC Error: [2] ([3]).</Error>
<Error Id="4142">ODBC Connect: timeout exceeded.</Error>
<Error Id="4143">SQL script parse error: invalid syntax.</Error>
<Error Id="4150">Internal error in CallStdFcn.</Error>
<Error Id="4151">Function '[2]' not found in DLL '[3]'.</Error>
<Error Id="4152">Would you like to remove [ProductName] settings and temporary files?</Error>
<Error Id="4153">[2] mandatory prerequisite was not corectly installed.</Error>
<Error Id="4154">[2] prerequisite was not corectly installed. Continue installation of [ProductName]?</Error>
<Error Id="4155">Failed to correctly acquire [2] file: CRC error.</Error>
<Error Id="4156">Failed to correctly acquire [2] file: CRC error. Continue installation of [ProductName]?</Error>
<ProgressText Action="Advertise">Advertising application</ProgressText>
<ProgressText Action="AllocateRegistrySpace" Template="Free space: [1]">Allocating registry space</ProgressText>
<ProgressText Action="AppSearch" Template="Property: [1], Signature: [2]">Searching for installed applications</ProgressText>
<ProgressText Action="BindImage" Template="File: [1]">Binding executables</ProgressText>
<ProgressText Action="CCPSearch">Searching for qualifying products</ProgressText>
<ProgressText Action="CostFinalize">Computing space requirements</ProgressText>
<ProgressText Action="CostInitialize">Computing space requirements</ProgressText>
<ProgressText Action="CreateFolders" Template="Folder: [1]">Creating folders</ProgressText>
<ProgressText Action="CreateShortcuts" Template="Shortcut: [1]">Creating shortcuts</ProgressText>
<ProgressText Action="DeleteServices" Template="Service: [1]">Deleting services</ProgressText>
<ProgressText Action="DuplicateFiles" Template="File: [1], Directory: [9], Size: [6]">Creating duplicate files</ProgressText>
<ProgressText Action="FileCost">Computing space requirements</ProgressText>
<ProgressText Action="FindRelatedProducts" Template="Found application: [1]">Searching for related applications</ProgressText>
<ProgressText Action="GenerateScript" Template="[1]">Generating script operations for action:</ProgressText>
<ProgressText Action="InstallAdminPackage" Template="File: [1], Directory: [9], Size: [6]">Copying network install files</ProgressText>
<ProgressText Action="InstallFiles" Template="File: [1], Directory: [9], Size: [6]">Copying new files</ProgressText>
<ProgressText Action="InstallODBC">Installing ODBC components</ProgressText>
<ProgressText Action="InstallSFPCatalogFile" Template="File: [1], Dependencies: [2]">Installing system catalog</ProgressText>
<ProgressText Action="InstallServices" Template="Service: [2]">Installing new services</ProgressText>
<ProgressText Action="InstallValidate">Validating install</ProgressText>
<ProgressText Action="LaunchConditions">Evaluating launch conditions</ProgressText>
<ProgressText Action="MigrateFeatureStates" Template="Application: [1]">Migrating feature states from related applications</ProgressText>
<ProgressText Action="MoveFiles" Template="File: [1], Directory: [9], Size: [6]">Moving files</ProgressText>
<ProgressText Action="MsiPublishAssemblies" Template="Application Context:[1], Assembly Name:[2]">Publishing assembly information</ProgressText>
<ProgressText Action="MsiUnpublishAssemblies" Template="Application Context:[1], Assembly Name:[2]">Unpublishing assembly information</ProgressText>
<ProgressText Action="PatchFiles" Template="File: [1], Directory: [2], Size: [3]">Patching files</ProgressText>
<ProgressText Action="ProcessComponents">Updating component registration</ProgressText>
<ProgressText Action="PublishComponents" Template="Component ID: [1], Qualifier: [2]">Publishing Qualified Components</ProgressText>
<ProgressText Action="PublishFeatures" Template="Feature: [1]">Publishing Product Features</ProgressText>
<ProgressText Action="PublishProduct">Publishing product information</ProgressText>
<ProgressText Action="RMCCPSearch">Searching for qualifying products</ProgressText>
<ProgressText Action="RegisterClassInfo" Template="Class Id: [1]">Registering Class servers</ProgressText>
<ProgressText Action="RegisterComPlus" Template="AppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}">Registering COM+ Applications and Components</ProgressText>
<ProgressText Action="RegisterExtensionInfo" Template="Extension: [1]">Registering extension servers</ProgressText>
<ProgressText Action="RegisterFonts" Template="Font: [1]">Registering fonts</ProgressText>
<ProgressText Action="RegisterMIMEInfo" Template="MIME Content Type: [1], Extension: [2]">Registering MIME info</ProgressText>
<ProgressText Action="RegisterProduct">Registering product</ProgressText>
<ProgressText Action="RegisterProgIdInfo" Template="ProgId: [1]">Registering program identifiers</ProgressText>
<ProgressText Action="RegisterTypeLibraries" Template="LibID: [1]">Registering type libraries</ProgressText>
<ProgressText Action="RegisterUser">Registering user</ProgressText>
<ProgressText Action="RemoveDuplicateFiles" Template="File: [1], Directory: [9]">Removing duplicated files</ProgressText>
<ProgressText Action="RemoveEnvironmentStrings" Template="Name: [1], Value: [2], Action [3]">Updating environment strings</ProgressText>
<ProgressText Action="RemoveExistingProducts" Template="Application: [1], Command line: [2]">Removing applications</ProgressText>
<ProgressText Action="RemoveFiles" Template="File: [1], Directory: [9]">Removing files</ProgressText>
<ProgressText Action="RemoveFolders" Template="Folder: [1]">Removing folders</ProgressText>
<ProgressText Action="RemoveIniValues" Template="File: [1], Section: [2], Key: [3], Value: [4]">Removing INI files entries</ProgressText>
<ProgressText Action="RemoveODBC">Removing ODBC components</ProgressText>
<ProgressText Action="RemoveRegistryValues" Template="Key: [1], Name: [2]">Removing system registry values</ProgressText>
<ProgressText Action="RemoveShortcuts" Template="Shortcut: [1]">Removing shortcuts</ProgressText>
<ProgressText Action="Rollback">Rolling back action:</ProgressText>
<ProgressText Action="RollbackCleanup" Template="File: [1]">Removing backup files</ProgressText>
<ProgressText Action="SelfRegModules" Template="File: [1], Folder: [2]">Registering modules</ProgressText>
<ProgressText Action="SelfUnregModules" Template="File: [1], Folder: [2]">Unregistering modules</ProgressText>
<ProgressText Action="SetODBCFolders">Initializing ODBC directories</ProgressText>
<ProgressText Action="StartServices" Template="Service: [1]">Starting services</ProgressText>
<ProgressText Action="StopServices" Template="Service: [1]">Stopping services</ProgressText>
<ProgressText Action="UnmoveFiles" Template="File: [1], Directory: [9]">Removing moved files</ProgressText>
<ProgressText Action="UnpublishComponents" Template="Component ID: [1], Qualifier: [2]">Unpublishing Qualified Components</ProgressText>
<ProgressText Action="UnpublishFeatures" Template="Feature: [1]">Unpublishing Product Features</ProgressText>
<ProgressText Action="UnpublishProduct">Unpublishing product information</ProgressText>
<ProgressText Action="UnregisterClassInfo" Template="Class Id: [1]">Unregister Class servers</ProgressText>
<ProgressText Action="UnregisterComPlus" Template="AppId: [1]{{, AppType: [2]}}">Unregistering COM+ Applications and Components</ProgressText>
<ProgressText Action="UnregisterExtensionInfo" Template="Extension: [1]">Unregistering extension servers</ProgressText>
<ProgressText Action="UnregisterFonts" Template="Font: [1]">Unregistering fonts</ProgressText>
<ProgressText Action="UnregisterMIMEInfo" Template="MIME Content Type: [1], Extension: [2]">Unregistering MIME info</ProgressText>
<ProgressText Action="UnregisterProgIdInfo" Template="ProgId: [1]">Unregistering program identifiers</ProgressText>
<ProgressText Action="UnregisterTypeLibraries" Template="LibID: [1]">Unregistering type libraries</ProgressText>
<ProgressText Action="WriteEnvironmentStrings" Template="Name: [1], Value: [2], Action [3]">Updating environment strings</ProgressText>
<ProgressText Action="WriteIniValues" Template="File: [1], Section: [2], Key: [3], Value: [4]">Writing INI files values</ProgressText>
<ProgressText Action="WriteRegistryValues" Template="Key: [1], Name: [2], Value: [3]">Writing system registry values</ProgressText>
<RadioButtonGroup Property="AppsShutdownOption">
<RadioButton Height="20" Text="Automatically &close applications and attempt to restart them after setup is complete" Value="All" Width="320" X="5" Y="5" />
<RadioButton Height="15" Text="Do &not close applications (a reboot will be required)" Value="None" Width="320" X="5" Y="25" />
</RadioButtonGroup>
<TextStyle Id="DlgFont8" FaceName="Tahoma" Size="8" Red="0" Green="0" Blue="0" />
<TextStyle Id="DlgFontBold8" FaceName="Tahoma" Size="8" Red="0" Green="0" Blue="0" Bold="yes" />
<TextStyle Id="VerdanaBold13" FaceName="Verdana" Size="13" Red="0" Green="0" Blue="0" Bold="yes" />
<UIText Id="AbsentPath" />
<UIText Id="BrowseFolderLocation">Location</UIText>
<UIText Id="BrowseFolderName">Folder name:</UIText>
<UIText Id="BrowseFolderSelectFolder">Select Folder</UIText>
<UIText Id="GB">GB</UIText>
<UIText Id="HttpPostMsg">Sending collected data...</UIText>
<UIText Id="HttpPostTitle"> </UIText>
<UIText Id="KB">KB</UIText>
<UIText Id="MB">MB</UIText>
<UIText Id="MenuAbsent">Entire feature will be unavailable</UIText>
<UIText Id="MenuAdvertise">Feature will be installed when required</UIText>
<UIText Id="MenuAllCD">Entire feature will be installed to run from CD</UIText>
<UIText Id="MenuAllLocal">Entire feature will be installed on local hard drive</UIText>
<UIText Id="MenuAllNetwork">Entire feature will be installed to run from network</UIText>
<UIText Id="MenuCD">Will be installed to run from CD</UIText>
<UIText Id="MenuLocal">Will be installed on local hard drive</UIText>
<UIText Id="MenuNetwork">Will be installed to run from network</UIText>
<UIText Id="ODBCTestMsg">Please wait while testing the connection...</UIText>
<UIText Id="ODBCTestTitle">ODBC</UIText>
<UIText Id="SQLBrowseMsg">Browsing SQL Servers on the network...</UIText>
<UIText Id="SQLBrowseTitle">SQL</UIText>
<UIText Id="SQLShowDatabasesMsg">Connecting to database server...</UIText>
<UIText Id="SQLShowDatabasesTitle">ODBC</UIText>
<UIText Id="ScriptInProgress">Gathering required information...</UIText>
<UIText Id="SelAbsentAbsent">This feature will remain uninstalled</UIText>
<UIText Id="SelAbsentAdvertise">This feature will be set to be installed when required</UIText>
<UIText Id="SelAbsentCD">This feature will be installed to run from CD</UIText>
<UIText Id="SelAbsentLocal">This feature will be installed on the local hard drive</UIText>
<UIText Id="SelAbsentNetwork">This feature will be installed to run from the network</UIText>
<UIText Id="SelAdvertiseAbsent">This feature will become unavailable</UIText>
<UIText Id="SelAdvertiseAdvertise">Will be installed when required</UIText>
<UIText Id="SelAdvertiseCD">This feature will be available to run from CD</UIText>
<UIText Id="SelAdvertiseLocal">This feature will be installed on your local hard drive</UIText>
<UIText Id="SelAdvertiseNetwork">This feature will be available to run from the network</UIText>
<UIText Id="SelCDAbsent">This feature will be uninstalled completely, you won't be able to run it from CD</UIText>
<UIText Id="SelCDAdvertise">This feature will change from run from CD state to set to be installed when required</UIText>
<UIText Id="SelCDCD">This feature will remain to be run from CD</UIText>
<UIText Id="SelCDLocal">This feature will change from run from CD state to be installed on the local hard drive</UIText>
<UIText Id="SelChildCostNeg">This feature frees up [1] on your hard drive.</UIText>
<UIText Id="SelChildCostPos">This feature requires [1] on your hard drive.</UIText>
<UIText Id="SelCostPending">Compiling cost for this feature...</UIText>
<UIText Id="SelLocalAbsent">This feature will be completely removed</UIText>
<UIText Id="SelLocalAdvertise">This feature will be removed from your local hard drive, but will be set to be installed when required</UIText>
<UIText Id="SelLocalCD">This feature will be removed from your local hard drive, but will be still available to run from CD</UIText>
<UIText Id="SelLocalLocal">This feature will remain on you local hard drive</UIText>
<UIText Id="SelLocalNetwork">This feature will be removed from your local hard drive, but will be still available to run from the network</UIText>
<UIText Id="SelNetworkAbsent">This feature will be uninstalled completely, you won't be able to run it from the network</UIText>
<UIText Id="SelNetworkAdvertise">This feature will change from run from network state to set to be installed when required</UIText>
<UIText Id="SelNetworkLocal">This feature will change from run from network state to be installed on the local hard drive</UIText>
<UIText Id="SelNetworkNetwork">This feature will remain to be run from the network</UIText>
<UIText Id="SelParentCostNegNeg">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.</UIText>
<UIText Id="SelParentCostNegPos">This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.</UIText>
<UIText Id="SelParentCostPosNeg">This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive.</UIText>
<UIText Id="SelParentCostPosPos">This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.</UIText>
<UIText Id="TimeRemaining">Time remaining: {[1] minutes }{[2] seconds}</UIText>
<UIText Id="VolumeCostAvailable">Available</UIText>
<UIText Id="VolumeCostBadGroup">Insufficient space</UIText>
<UIText Id="VolumeCostDifference">Difference</UIText>
<UIText Id="VolumeCostDrivesGroup">Installation drives</UIText>
<UIText Id="VolumeCostOthersGroup">Unused drives</UIText>
<UIText Id="VolumeCostRequired">Required</UIText>
<UIText Id="VolumeCostSize">Disk Size</UIText>
<UIText Id="VolumeCostVolume">Volume</UIText>
<UIText Id="bytes">bytes</UIText>
<Dialog Id="AdminWelcomeDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="[ButtonText_Next]" TabSkip="no" Default="yes">
<Publish Property="InstallMode" Value="Server Image">1</Publish>
<Publish Event="NewDialog" Value="AdminInstallPointDlg">1</Publish>
</Control>
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Cancel="yes">
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
</Control>
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" Text="[DialogBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[ButtonText_Back]" TabSkip="no" Disabled="yes" />
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Text="{\VerdanaBold13}Welcome to the [ProductName] [Wizard]" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Description" Type="Text" X="135" Y="86" Width="220" Height="60" Text="The [Wizard] will create a server image of [ProductName], at a specified network location. Click "Next" to continue or "Cancel" to exit the [Wizard]." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="372" Height="0" TabSkip="no" Disabled="yes" />
</Dialog>
<Dialog Id="ExitDialog" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="[ButtonText_Finish]" TabSkip="no" Default="yes" Cancel="yes">
<!--Publish Event="DoAction" Value="AI_ViewReadme">(VIEWREADME=1) AND (NOT Installed)</Publish>
<Publish Event="DoAction" Value="AI_LaunchApp">(RUNAPPLICATION=1) AND (NOT Installed)</Publish>
<Property Id="WIXUI_EXITDIALOGOPTIONALTEXT" Value="NOTE: The BCMA Executable will need to be run as an administrator its first execution." /-->
<Publish Event="EndDialog" Value="Return">1</Publish>
</Control>
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Disabled="yes" />
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" Text="[DialogBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[ButtonText_Back]" TabSkip="no" Disabled="yes" />
<Control Id="ViewReadmeText" Type="Text" X="148" Y="140" Width="220" Height="20" Text="View readme file" TabSkip="no" Transparent="yes">
<Condition Action="hide">Installed OR ( (NOT Installed) AND (CTRLS <> 1) AND (CTRLS <> 3) )</Condition>
</Control>
<Control Id="ViewReadmeCheckBox" Type="CheckBox" X="135" Y="140" Width="10" Height="10" Property="VIEWREADME" CheckBoxValue="1" TabSkip="no">
<Condition Action="hide">Installed OR ( (NOT Installed) AND (CTRLS <> 1) AND (CTRLS <> 3) )</Condition>
</Control>
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Text="{\VerdanaBold13}Completing the [ProductName] [Wizard]" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="LaunchProdText" Type="Text" X="148" Y="170" Width="220" Height="20" Text="Launch [ProductName]" TabSkip="no" Transparent="yes">
<Condition Action="hide">Installed OR ( (NOT Installed) AND (CTRLS <> 2) AND (CTRLS <> 3) )</Condition>
</Control>
<Control Id="LaunchProdCheckBox" Type="CheckBox" X="135" Y="170" Width="10" Height="10" Property="RUNAPPLICATION" CheckBoxValue="1" TabSkip="no">
<Condition Action="hide">Installed OR ( (NOT Installed) AND (CTRLS <> 2) AND (CTRLS <> 3) )</Condition>
</Control>
<Control Id="Description" Type="Text" X="135" Y="86" Width="220" Height="20" Text="Click the "Finish" button to exit the [Wizard]." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Warning" Type="Text" X="135" Y="150" Width="220" Height="30" Text="NOTE: The BCMA Executable will need to be run as an administrator its first execution." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="372" Height="0" TabSkip="no" Disabled="yes" />
</Dialog>
<Dialog Id="FatalError" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="[ButtonText_Finish]" TabSkip="no" Default="yes" Cancel="yes">
<Publish Event="EndDialog" Value="Exit">1</Publish>
</Control>
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Disabled="yes" />
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" Text="[DialogBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[ButtonText_Back]" TabSkip="no" Disabled="yes" />
<Control Id="Description2" Type="Text" X="135" Y="131" Width="220" Height="20" Text="Click the "Finish" button to exit the [Wizard]." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Description1" Type="Text" X="135" Y="86" Width="220" Height="40" Text="[ProductName] setup ended prematurely because of an error. Your system has not been modified. To install this program at a later time, please run the installation again." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="372" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Text="{\VerdanaBold13}The [ProductName] [Wizard] ended prematurely" TabSkip="no" Transparent="yes" NoPrefix="yes" />
</Dialog>
<Dialog Id="PrepareDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" Modeless="yes" NoMinimize="yes">
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Default="yes" Cancel="yes">
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
</Control>
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" Text="[DialogBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Text="{\VerdanaBold13}Welcome to the [ProductName] [Wizard]" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="[ButtonText_Next]" TabSkip="no" Disabled="yes" />
<Control Id="Description" Type="Text" X="135" Y="86" Width="220" Height="20" Text="Please wait while the [Wizard] prepares to guide you through the installation." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="372" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[ButtonText_Back]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="ActionText" Type="Text" X="135" Y="115" Width="220" Height="20" TabSkip="no" Transparent="yes" NoPrefix="yes">
<Subscribe Event="ActionText" Attribute="Text" />
</Control>
<Control Id="ActionData" Type="Text" X="135" Y="142" Width="220" Height="30" TabSkip="no" Transparent="yes" NoPrefix="yes">
<Subscribe Event="ActionData" Attribute="Text" />
</Control>
</Dialog>
<Dialog Id="ProgressDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" Modeless="yes" NoMinimize="yes">
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Default="yes" Cancel="yes">
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
</Control>
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" Text="[BannerBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="BottomLine" Type="Line" X="5" Y="234" Width="368" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Logo" Type="Text" X="4" Y="228" Width="70" Height="12" Text="Advanced Installer" TabSkip="no" Disabled="yes" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[ButtonText_Back]" TabSkip="no" Disabled="yes" />
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="[ButtonText_Next]" TabSkip="no" Disabled="yes" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="ActionText" Type="Text" X="80" Y="100" Width="255" Height="10" TabSkip="no">
<Subscribe Event="ActionText" Attribute="Text" />
</Control>
<Control Id="Title" Type="Text" X="20" Y="15" Width="200" Height="15" Text="[DlgTitleFont][Progress1] [ProductName]" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Text" Type="Text" X="35" Y="65" Width="300" Height="30" Text="Please wait while the [Wizard] [Progress2] [ProductName]. This may take several minutes." TabSkip="no" />
<Control Id="StatusLabel" Type="Text" X="35" Y="100" Width="45" Height="10" Text="Status:" TabSkip="no" />
<Control Id="ProgressBar" Type="ProgressBar" X="35" Y="115" Width="300" Height="10" Text="Progress done" TabSkip="no" Disabled="yes" ProgressBlocks="yes">
<Subscribe Event="SetProgress" Attribute="Progress" />
</Control>
</Dialog>
<Dialog Id="UserExit" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="[ButtonText_Finish]" TabSkip="no" Default="yes" Cancel="yes">
<Publish Event="EndDialog" Value="Exit">1</Publish>
</Control>
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Disabled="yes" />
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" Text="[DialogBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[ButtonText_Back]" TabSkip="no" Disabled="yes" />
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Text="{\VerdanaBold13}The [ProductName] [Wizard] was interrupted" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Description2" Type="Text" X="135" Y="131" Width="220" Height="20" Text="Click the "Finish" button to exit the [Wizard]." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Description1" Type="Text" X="135" Y="86" Width="220" Height="40" Text="[ProductName] setup was interrupted. Your system has not been modified. To install this program at a later time, please run the installation again." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="372" Height="0" TabSkip="no" Disabled="yes" />
</Dialog>
<Dialog Id="AdminBrowseDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="PathEdit" Type="PathEdit" X="100" Y="202" Width="246" Height="17" Property="TARGETDIR" TabSkip="no" />
<Control Id="BottomLine" Type="Line" X="5" Y="234" Width="368" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Logo" Type="Text" X="4" Y="228" Width="70" Height="12" Text="Advanced Installer" TabSkip="no" Disabled="yes" />
<Control Id="OK" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_OK]" TabSkip="no" Default="yes">
<Publish Event="SetTargetPath" Value="TARGETDIR">1</Publish>
<Publish Event="EndDialog" Value="Return">1</Publish>
</Control>
<Control Id="Cancel" Type="PushButton" X="240" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Cancel="yes">
<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="60" Height="10" Text="&Look in:" TabSkip="no" />
<Control Id="DirectoryCombo" Type="DirectoryCombo" X="86" Y="55" Width="204" Height="80" Property="TARGETDIR" TabSkip="no" Removable="yes" Fixed="yes" Remote="yes">
<Subscribe Event="IgnoreChange" Attribute="IgnoreChange" />
</Control>
<Control Id="Up" Type="PushButton" X="298" Y="55" Width="19" Height="19" Text="Up" ToolTip="Up One Level" TabSkip="no" IconSize="16" FixedSize="yes" Icon="yes">
<Publish Event="DirectoryListUp" Value="0">1</Publish>
</Control>
<Control Id="NewFolder" Type="PushButton" X="325" Y="55" Width="19" Height="19" Text="New" ToolTip="Create A New Folder" TabSkip="no" IconSize="16" FixedSize="yes" Icon="yes">
<Publish Event="DirectoryListNew" Value="0">1</Publish>
</Control>
<Control Id="DirectoryList" Type="DirectoryList" X="25" Y="83" Width="320" Height="110" Property="TARGETDIR" TabSkip="no" Sunken="yes" />
<Control Id="PathLabel" Type="Text" X="25" Y="205" Width="75" Height="10" Text="&Folder name:" TabSkip="no" />
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" Text="[BannerBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Text="[DlgTitleFont]Change current destination folder" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Text="Browse to the destination folder" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" TabSkip="no" Disabled="yes" />
</Dialog>
<Dialog Id="AdminInstallPointDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="Text" Type="Text" X="25" Y="80" Width="320" Height="10" Text="&Enter a new network location or click "Browse" to browse to one." TabSkip="no" />
<Control Id="PathEdit" Type="PathEdit" X="25" Y="93" Width="320" Height="18" Property="TARGETDIR" TabSkip="no" />
<Control Id="Browse" Type="PushButton" X="279" Y="119" Width="66" Height="17" Text="[ButtonText_Browse]" TabSkip="no">
<Publish Event="SpawnDialog" Value="AdminBrowseDlg">1</Publish>
</Control>
<Control Id="BottomLine" Type="Line" X="5" Y="234" Width="368" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Logo" Type="Text" X="4" Y="228" Width="70" Height="12" Text="Advanced Installer" TabSkip="no" Disabled="yes" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[ButtonText_Back]" TabSkip="no">
<Publish Event="NewDialog" Value="AdminWelcomeDlg">1</Publish>
</Control>
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="[ButtonText_Next]" TabSkip="no" Default="yes">
<Publish Event="SetTargetPath" Value="TARGETDIR">1</Publish>
<Publish Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
</Control>
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Cancel="yes">
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
</Control>
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" Text="[BannerBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Text="[DlgTitleFont]Network Location" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Description" Type="Text" X="25" Y="20" Width="280" Height="20" Text="Please specify a network location for the server image of [ProductName] product" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" TabSkip="no" Disabled="yes" />
</Dialog>
<Dialog Id="AdminRegistrationDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="OrganizationLabel" Type="Text" X="45" Y="71" Width="285" Height="30" Text="&Please enter the name of your organization in the box below. This will be used as default company name for subsequent installations of [ProductName]:" TabSkip="no" />
<Control Id="OrganizationEdit" Type="Edit" X="45" Y="105" Width="220" Height="18" Property="COMPANYNAME" Text="{80}" TabSkip="no" />
<Control Id="CDKeyLabel" Type="Text" X="45" Y="130" Width="54" Height="10" Text="CD &Key:" TabSkip="no" />
<Control Id="CDKeyEdit" Type="MaskedEdit" X="45" Y="143" Width="250" Height="16" Property="PIDKEY" Text="[PIDTemplate]" TabSkip="no" />
<Control Id="BottomLine" Type="Line" X="5" Y="234" Width="368" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Logo" Type="Text" X="4" Y="228" Width="70" Height="12" Text="Advanced Installer" TabSkip="no" Disabled="yes" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[ButtonText_Back]" TabSkip="no" Image="yes">
<Publish Event="NewDialog" Value="AdminWelcomeDlg">1</Publish>
</Control>
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="[ButtonText_Next]" TabSkip="no" Default="yes">
<Publish Event="ValidateProductID" Value="0">0</Publish>
<Publish Event="NewDialog" Value="AdminInstallPointDlg">ProductID</Publish>
</Control>
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Cancel="yes">
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
</Control>
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" Text="[BannerBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Text="[DlgTitleFont]Company Information" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Text="Please enter your company information" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" TabSkip="no" Disabled="yes" />
</Dialog>
<Dialog Id="BrowseDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="PathEdit" Type="PathEdit" X="100" Y="202" Width="246" Height="18" Property="_BrowseProperty" TabSkip="no" Indirect="yes" />
<Control Id="BottomLine" Type="Line" X="5" Y="234" Width="368" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Logo" Type="Text" X="4" Y="228" Width="70" Height="12" Text="Advanced Installer" TabSkip="no" Disabled="yes" />
<Control Id="OK" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_OK]" TabSkip="no" Default="yes">
<Publish Event="SetTargetPath" Value="[_BrowseProperty]">1</Publish>
<Publish Event="EndDialog" Value="Return">1</Publish>
</Control>
<Control Id="Cancel" Type="PushButton" X="240" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Cancel="yes">
<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="60" Height="10" Text="&Look in:" TabSkip="no" />
<Control Id="DirectoryCombo" Type="DirectoryCombo" X="86" Y="55" Width="204" Height="80" Property="_BrowseProperty" TabSkip="no" Indirect="yes" Fixed="yes" Remote="yes">
<Subscribe Event="IgnoreChange" Attribute="IgnoreChange" />
</Control>
<Control Id="Up" Type="PushButton" X="298" Y="55" Width="19" Height="19" Text="Up" ToolTip="Up One Level" TabSkip="no" IconSize="16" FixedSize="yes" Icon="yes">
<Publish Event="DirectoryListUp" Value="0">1</Publish>
</Control>
<Control Id="NewFolder" Type="PushButton" X="325" Y="55" Width="19" Height="19" Text="New" ToolTip="Create A New Folder" TabSkip="no" IconSize="16" FixedSize="yes" Icon="yes">
<Publish Event="DirectoryListNew" Value="0">1</Publish>
</Control>
<Control Id="DirectoryList" Type="DirectoryList" X="25" Y="83" Width="320" Height="110" Property="_BrowseProperty" TabSkip="no" Sunken="yes" Indirect="yes" />
<Control Id="PathLabel" Type="Text" X="25" Y="205" Width="75" Height="10" Text="&Folder name:" TabSkip="no" />
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" Text="[BannerBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Text="[DlgTitleFont]Change current destination folder" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Text="Browse to the destination folder" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" TabSkip="no" Disabled="yes" />
</Dialog>
<Dialog Id="CancelDlg" X="50" Y="50" Width="260" Height="85" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="No" Type="PushButton" X="132" Y="57" Width="56" Height="17" Text="[ButtonText_No]" TabSkip="no" Default="yes" Cancel="yes">
<Publish Event="EndDialog" Value="Return">1</Publish>
</Control>
<Control Id="Yes" Type="PushButton" X="72" Y="57" Width="56" Height="17" Text="[ButtonText_Yes]" TabSkip="no">
<Publish Event="EndDialog" Value="Exit">1</Publish>
</Control>
<Control Id="Icon" Type="Icon" X="15" Y="15" Width="24" Height="24" Text="[InfoIcon]" ToolTip="Information icon" TabSkip="no" Disabled="yes" IconSize="32" FixedSize="yes" />
<Control Id="Text" Type="Text" X="48" Y="15" Width="194" Height="30" Text="Are you sure you want to cancel [ProductName] installation?" TabSkip="no" />
</Dialog>
<Dialog Id="CustomizeDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes" TrackDiskSpace="yes">
<Control Id="Tree" Type="SelectionTree" X="25" Y="85" Width="175" Height="95" Property="_BrowseProperty" Text="Tree of selections" TabSkip="no" Sunken="yes" />
<Control Id="Browse" Type="PushButton" X="294" Y="200" Width="66" Height="17" Text="[ButtonText_Browse]" TabSkip="no">
<Condition Action="hide">Installed</Condition>
<Publish Event="SelectionBrowse" Value="BrowseDlg">1</Publish>
</Control>
<Control Id="Reset" Type="PushButton" X="15" Y="243" Width="76" Height="17" Text="[ButtonText_Reset]" TabSkip="no">
<Publish Event="Reset" Value="0">1</Publish>
<Subscribe Event="SelectionNoItems" Attribute="Enabled" />
</Control>
<Control Id="DiskCost" Type="PushButton" X="91" Y="243" Width="76" Height="17" Text="Disk &Usage" TabSkip="no">
<Publish Event="SpawnDialog" Value="DiskCostDlg">1</Publish>
<Subscribe Event="SelectionNoItems" Attribute="Enabled" />
</Control>
<Control Id="BottomLine" Type="Line" X="5" Y="234" Width="368" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Logo" Type="Text" X="4" Y="228" Width="70" Height="12" Text="Advanced Installer" TabSkip="no" Disabled="yes" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[ButtonText_Back]" TabSkip="no">
<Publish Event="NewDialog" Value="MaintenanceTypeDlg">InstallMode = "Change"</Publish>
</Control>
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="[ButtonText_Next]" TabSkip="no" Default="yes">
<Publish Event="NewDialog" Value="VerifyReadyDlg">(NOT Installed) OR (InstallMode = "Change")</Publish>
<Subscribe Event="SelectionNoItems" Attribute="Enabled" />
</Control>
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Cancel="yes">
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
</Control>
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" Text="[BannerBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="LocationLabel" Type="Text" X="25" Y="200" Width="50" Height="10" Text="Location:" TabSkip="no">
<Condition Action="hide">Installed</Condition>
<Subscribe Event="SelectionPathOn" Attribute="Visible" />
</Control>
<Control Id="Location" Type="Text" X="75" Y="200" Width="215" Height="20" Property="APPDIR" Text="<The selection's path>" TabSkip="no">
<Condition Action="hide">Installed</Condition>
<Subscribe Event="SelectionPath" Attribute="Text" />
<Subscribe Event="SelectionPathOn" Attribute="Visible" />
</Control>
<Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Text="Select the way you want features to be installed." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Box" Type="GroupBox" X="210" Y="81" Width="140" Height="98" TabSkip="no" Disabled="yes" />
<Control Id="ItemSize" Type="Text" X="215" Y="128" Width="131" Height="50" Text="The size of the currently selected item." TabSkip="no">
<Subscribe Event="SelectionSize" Attribute="Text" />
</Control>
<Control Id="ItemDescription" Type="Text" X="215" Y="90" Width="131" Height="30" Text="Multiline description of the currently selected item." TabSkip="no">
<Subscribe Event="SelectionDescription" Attribute="Text" />
</Control>
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Text="[DlgTitleFont]Custom Setup" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Text" Type="Text" X="25" Y="55" Width="320" Height="20" Text="Click on the icons in the tree below to change the way features will be installed." TabSkip="no" />
</Dialog>
<Dialog Id="DiskCostDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="OK" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_OK]" TabSkip="no" Default="yes" Cancel="yes">
<Publish Event="EndDialog" Value="Return">1</Publish>
</Control>
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" Text="[BannerBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="BottomLine" Type="Line" X="5" Y="234" Width="368" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Logo" Type="Text" X="4" Y="228" Width="70" Height="12" Text="Advanced Installer" TabSkip="no" Disabled="yes" />
<Control Id="VolumeList" Type="VolumeCostList" X="20" Y="100" Width="330" Height="120" Text="{120}{70}{70}{70}{70}" TabSkip="no" Sunken="yes" Fixed="yes" Remote="yes" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Text="[DlgTitleFont]Disk Space Requirements" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Text" Type="Text" X="20" Y="53" Width="330" Height="40" Text="The highlighted volumes (if any) do not have enough disk space available for the currently selected features. You can either remove some files from the highlighted volumes, or choose to install less features onto local drive(s), or select different destination drive(s)." TabSkip="no" />
<Control Id="Description" Type="Text" X="20" Y="20" Width="280" Height="20" Text="The disk space required for the installation of the selected features." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" TabSkip="no" Disabled="yes" />
</Dialog>
<Dialog Id="ErrorDlg" X="50" Y="50" Width="270" Height="105" Title="Installer Information" NoMinimize="yes" ErrorDialog="yes">
<Control Id="ErrorText" Type="Text" X="48" Y="15" Width="205" Height="60" Text="Information text" TabSkip="no" />
<Control Id="Y" Type="PushButton" X="100" Y="80" Width="56" Height="17" Text="[ButtonText_Yes]" TabSkip="yes">
<Publish Event="EndDialog" Value="ErrorYes">1</Publish>
</Control>
<Control Id="A" Type="PushButton" X="100" Y="80" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="yes">
<Publish Event="EndDialog" Value="ErrorAbort">1</Publish>
</Control>
<Control Id="C" Type="PushButton" X="100" Y="80" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="yes">
<Publish Event="EndDialog" Value="ErrorCancel">1</Publish>
</Control>
<Control Id="ErrorIcon" Type="Icon" X="15" Y="15" Width="24" Height="24" Text="[InfoIcon]" ToolTip="Information icon" TabSkip="yes" Disabled="yes" IconSize="32" FixedSize="yes" />
<Control Id="I" Type="PushButton" X="100" Y="80" Width="56" Height="17" Text="[ButtonText_Ignore]" TabSkip="yes">
<Publish Event="EndDialog" Value="ErrorIgnore">1</Publish>
</Control>
<Control Id="N" Type="PushButton" X="100" Y="80" Width="56" Height="17" Text="[ButtonText_No]" TabSkip="yes">
<Publish Event="EndDialog" Value="ErrorNo">1</Publish>
</Control>
<Control Id="O" Type="PushButton" X="100" Y="80" Width="56" Height="17" Text="[ButtonText_OK]" TabSkip="yes">
<Publish Event="EndDialog" Value="ErrorOk">1</Publish>
</Control>
<Control Id="R" Type="PushButton" X="100" Y="80" Width="56" Height="17" Text="[ButtonText_Retry]" TabSkip="yes">
<Publish Event="EndDialog" Value="ErrorRetry">1</Publish>
</Control>
</Dialog>
<Dialog Id="FilesInUse" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes" KeepModeless="yes">
<Control Id="Retry" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Retry]" TabSkip="no" Default="yes" Cancel="yes">
<Publish Event="EndDialog" Value="Retry">1</Publish>
</Control>
<Control Id="Ignore" Type="PushButton" X="235" Y="243" Width="56" Height="17" Text="[ButtonText_Ignore]" TabSkip="no">
<Publish Event="EndDialog" Value="Ignore">1</Publish>
</Control>
<Control Id="Exit" Type="PushButton" X="166" Y="243" Width="56" Height="17" Text="[ButtonText_Exit]" TabSkip="no">
<Publish Event="EndDialog" Value="Exit">1</Publish>
</Control>
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" Text="[BannerBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="BottomLine" Type="Line" X="5" Y="234" Width="368" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Logo" Type="Text" X="4" Y="228" Width="70" Height="12" Text="Advanced Installer" TabSkip="no" Disabled="yes" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Text="[DlgTitleFont]Files in Use" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Text" Type="Text" X="20" Y="55" Width="330" Height="30" Text="The following applications are using files that need to be updated by this setup. You can either close the applications and then click "Retry", or click "Ignore" so that the installer continues the installation and replaces these files when your system restarts." TabSkip="no" />
<Control Id="List" Type="ListBox" X="20" Y="87" Width="330" Height="130" Property="FileInUseProcess" TabSkip="no" Sunken="yes" />
<Control Id="Description" Type="Text" X="20" Y="23" Width="280" Height="20" Text="Some files that need to be updated are currently in use." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" TabSkip="no" Disabled="yes" />
</Dialog>
<Dialog Id="FolderDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" TrackDiskSpace="yes">
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="[ButtonText_Next]" TabSkip="no" Default="yes">
<Publish Event="SetTargetPath" Value="APPDIR">1</Publish>
<Publish Event="NewDialog" Value="VerifyReadyDlg">AI_INSTALL</Publish>
</Control>
<Control Id="FolderLabel" Type="Text" X="20" Y="114" Width="348" Height="12" Text="&Folder:" TabSkip="no" />
<Control Id="FolderEdit" Type="PathEdit" X="18" Y="126" Width="252" Height="18" Property="APPDIR" TabSkip="no" Sunken="yes" />
<Control Id="Browse" Type="PushButton" X="276" Y="126" Width="90" Height="18" Text="[ButtonText_Browse]" TabSkip="no">
<Publish Property="_BrowseProperty" Value="APPDIR">1</Publish>
<Publish Event="SpawnDialog" Value="BrowseDlg">1</Publish>
</Control>
<Control Id="BottomLine" Type="Line" X="5" Y="234" Width="368" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Logo" Type="Text" X="4" Y="228" Width="70" Height="12" Text="Advanced Installer" TabSkip="no" Disabled="yes" />
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Cancel="yes">
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
</Control>
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[ButtonText_Back]" TabSkip="no">
<Publish Event="NewDialog" Value="WelcomeDlg">AI_INSTALL</Publish>
</Control>
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" Text="[BannerBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Text="[DlgTitleFont]Select Installation Folder" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Text" Type="Text" X="25" Y="70" Width="320" Height="40" Text="To install in this folder, click "Next". To install to a different folder, enter it below or click "Browse"." TabSkip="no" />
<Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Text="This is the folder where [ProductName] will be installed." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" TabSkip="no" Disabled="yes" />
</Dialog>
<Dialog Id="MaintenanceTypeDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="ChangeLabel" Type="Text" X="105" Y="65" Width="100" Height="10" Text="[DlgTitleFont]&Modify" TabSkip="no" />
<Control Id="ChangeButton" Type="PushButton" X="50" Y="65" Width="38" Height="38" Text="[CustomSetupIcon]" ToolTip="Modify Installation" TabSkip="no" Default="yes" IconSize="32" FixedSize="yes" Icon="yes">
<Publish Property="InstallMode" Value="Change">1</Publish>
<Publish Property="Progress1" Value="[CtrlEvtChanging]">1</Publish>
<Publish Property="Progress2" Value="[CtrlEvtchanges]">1</Publish>
<Publish Event="NewDialog" Value="CustomizeDlg">1</Publish>
</Control>
<Control Id="RepairLabel" Type="Text" X="105" Y="114" Width="100" Height="10" Text="[DlgTitleFont]Re&pair" TabSkip="no" />
<Control Id="RepairButton" Type="PushButton" X="50" Y="114" Width="38" Height="38" Text="[RepairIcon]" ToolTip="Repair Installation" TabSkip="no" IconSize="32" FixedSize="yes" Icon="yes">
<Publish Property="InstallMode" Value="Repair">1</Publish>
<Publish Property="Progress1" Value="[CtrlEvtRepairing]">1</Publish>
<Publish Property="Progress2" Value="[CtrlEvtrepairs]">1</Publish>
<Publish Event="NewDialog" Value="VerifyRepairDlg">1</Publish>
</Control>
<Control Id="RemoveLabel" Type="Text" X="105" Y="163" Width="100" Height="10" Text="[DlgTitleFont]&Remove" TabSkip="no" />
<Control Id="RemoveButton" Type="PushButton" X="50" Y="163" Width="38" Height="38" Text="[RemoveIcon]" ToolTip="Remove Installation" TabSkip="no" IconSize="32" FixedSize="yes" Icon="yes">
<Publish Property="InstallMode" Value="Remove">1</Publish>
<Publish Property="Progress1" Value="[CtrlEvtRemoving]">1</Publish>
<Publish Property="Progress2" Value="[CtrlEvtremoves]">1</Publish>
<Publish Event="NewDialog" Value="VerifyRemoveDlg">1</Publish>
</Control>
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[ButtonText_Back]" TabSkip="no">
<Publish Event="NewDialog" Value="MaintenanceWelcomeDlg">AI_MAINT</Publish>
</Control>
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="[ButtonText_Next]" TabSkip="no" Disabled="yes" />
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Cancel="yes">
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
</Control>
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" Text="[BannerBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="BottomLine" Type="Line" X="5" Y="234" Width="368" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Logo" Type="Text" X="4" Y="228" Width="70" Height="12" Text="Advanced Installer" TabSkip="no" Disabled="yes" />
<Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="20" Text="Select the operation you wish to perform." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="ChangeText" Type="Text" X="105" Y="78" Width="230" Height="20" Text="Allows users to change the way features are installed." TabSkip="no" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="240" Height="15" Text="[DlgTitleFont]Modify, Repair or Remove installation" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="RepairText" Type="Text" X="105" Y="127" Width="230" Height="30" Text="Repairs errors in the most recent installation state - fixes missing or corrupt files, shortcuts and registry entries." TabSkip="no" />
<Control Id="RemoveText" Type="Text" X="105" Y="176" Width="230" Height="20" Text="Removes [ProductName] from your computer." TabSkip="no" />
</Dialog>
<Dialog Id="MaintenanceWelcomeDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="[ButtonText_Next]" TabSkip="no" Default="yes">
<Publish Event="SpawnWaitDialog" Value="WaitForCostingDlg">CostingComplete = 1</Publish>
<Publish Event="NewDialog" Value="MaintenanceTypeDlg">AI_MAINT</Publish>
</Control>
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Cancel="yes">
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
</Control>
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" Text="[DialogBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[ButtonText_Back]" TabSkip="no" Disabled="yes" />
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Text="{\VerdanaBold13}Welcome to the [ProductName] [Wizard]" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Description" Type="Text" X="135" Y="86" Width="220" Height="60" Text="The [Wizard] will allow you to change the way [ProductName] features are installed on your computer or even to remove [ProductName] from your computer. Click "Next" to continue or "Cancel" to exit the [Wizard]." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="372" Height="0" TabSkip="no" Disabled="yes" />
</Dialog>
<Dialog Id="MsiRMFilesInUse" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes" KeepModeless="yes">
<Control Id="OK" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="[ButtonText_OK]" TabSkip="no" Default="yes">
<Publish Event="RMShutdownAndRestart" Value="0">AppsShutdownOption = "All"</Publish>
<Publish Event="EndDialog" Value="Return">1</Publish>
</Control>
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_Cancel]" TabSkip="no" Cancel="yes">
<Publish Event="EndDialog" Value="Exit">1</Publish>
</Control>
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" Text="[BannerBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="25" Text="[DlgTitleFont]Files in Use" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Description" Type="Text" X="20" Y="23" Width="280" Height="20" Text="Some files that need to be updated are currently in use." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Text" Type="Text" X="20" Y="55" Width="330" Height="25" Text="The following applications are using files that need to be updated by this setup." TabSkip="no" />
<Control Id="List" Type="ListBox" X="20" Y="82" Width="330" Height="89" Property="FileInUseProcess" TabSkip="no" Sunken="yes" />
<Control Id="Options" Type="RadioButtonGroup" X="20" Y="172" Width="330" Height="48" Property="AppsShutdownOption" TabSkip="no" />
<Control Id="BottomLine" Type="Line" X="5" Y="234" Width="368" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Logo" Type="Text" X="4" Y="228" Width="70" Height="12" Text="Advanced Installer" TabSkip="no" Disabled="yes" />
</Dialog>
<Dialog Id="OutOfDiskDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="OK" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_OK]" TabSkip="no" Default="yes" Cancel="yes">
<Publish Event="EndDialog" Value="Return">1</Publish>
</Control>
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" Text="[BannerBitmap]" TabSkip="no" Disabled="yes" FixedSize="yes" />
<Control Id="BottomLine" Type="Line" X="5" Y="234" Width="368" Height="0" TabSkip="no" Disabled="yes" />
<Control Id="Logo" Type="Text" X="4" Y="228" Width="70" Height="12" Text="Advanced Installer" TabSkip="no" Disabled="yes" />
<Control Id="VolumeList" Type="VolumeCostList" X="20" Y="100" Width="330" Height="120" Text="{120}{70}{70}{70}{70}" TabSkip="no" Sunken="yes" Fixed="yes" Remote="yes" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Text="[DlgTitleFont]Out of Disk Space" TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="Text" Type="Text" X="20" Y="53" Width="330" Height="40" Text="The highlighted volumes do not have enough disk space available for the currently selected features. You can either remove some files from the highlighted volumes, or choose to install less features onto local drive(s), or select different destination drive(s)." TabSkip="no" />
<Control Id="Description" Type="Text" X="20" Y="20" Width="280" Height="20" Text="Disk space required for the installation exceeds available disk space." TabSkip="no" Transparent="yes" NoPrefix="yes" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" TabSkip="no" Disabled="yes" />
</Dialog>
<Dialog Id="OutOfRbDiskDlg" X="50" Y="50" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
<Control Id="No" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="[ButtonText_No]" TabSkip="no" Default="yes" Cancel="yes">
<Publish Event="EndDialog" Value="Return">1</Publish>
</Control>
<Control Id="Yes" Type="PushButton" X="240" Y="243" Width="56" Height="17" Text="[ButtonText_Yes]" TabSkip="no">