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
|
<element name="WixStandardBootstrapperApplication">
<annotation>
<documentation>
Uses WixStandardBootstrapperApplication as the Bootstrapper Application for a Bundle.
</documentation>
<appinfo>
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="BootstrapperApplication" />
</appinfo>
</annotation>
<complexType>
<choice minOccurs="0" maxOccurs="unbounded">
<any namespace="##other" processContents="lax">
<annotation>
<documentation>
Extensibility point in the WiX XML Schema. Schema extensions can register additional
elements at this point in the schema.
</documentation>
</annotation>
</any>
</choice>
<attribute name="LaunchTarget" type="xs:string">
<annotation>
<documentation>
If set, the success page will show a Launch button the user can use to launch the application being installed.
The string value can be formatted using Burn variables enclosed in brackets,
to refer to installation directories and so forth.
</documentation>
</annotation>
</attribute>
<attribute name="LaunchTargetElevatedId" type="xs:string">
<annotation>
<documentation>
Id of the target ApprovedExeForElevation element.
If set with LaunchTarget, WixStdBA will launch the application through the Engine's LaunchApprovedExe method instead of through ShellExecute.
</documentation>
</annotation>
</attribute>
<attribute name="LaunchArguments" type="xs:string">
<annotation>
<documentation>
If set, WixStdBA will supply these arguments when launching the application specified by the LaunchTarget attribute.
The string value can be formatted using Burn variables enclosed in brackets,
to refer to installation directories and so forth.
</documentation>
</annotation>
</attribute>
<attribute name="LaunchHidden" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>
If set to "yes", WixStdBA will launch the application specified by the LaunchTarget attribute with the SW_HIDE flag.
This attribute is ignored when the LaunchTargetElevatedId attribute is specified.
</documentation>
</annotation>
</attribute>
<attribute name="LaunchWorkingFolder" type="xs:string">
<annotation>
<documentation>
WixStdBA will use this working folder when launching the specified application.
The string value can be formatted using Burn variables enclosed in brackets,
to refer to installation directories and so forth.
This attribute is ignored when the LaunchTargetElevatedId attribute is specified.
</documentation>
</annotation>
</attribute>
<attribute name="LicenseFile" type="xs:string">
<annotation>
<documentation>Source file of the RTF license file. Cannot be used simultaneously with LicenseUrl.</documentation>
</annotation>
</attribute>
<attribute name="LicenseUrl" type="xs:string">
<annotation>
<documentation>URL target of the license link. Cannot be used simultaneously with LicenseFile. This attribute can be empty to hide the license link completely.</documentation>
</annotation>
</attribute>
<attribute name="LogoFile" type="xs:string">
<annotation>
<documentation>Source file of the logo graphic.</documentation>
</annotation>
</attribute>
<attribute name="LogoSideFile" type="xs:string">
<annotation>
<documentation>Source file of the side logo graphic.</documentation>
</annotation>
</attribute>
<attribute name="ThemeFile" type="xs:string">
<annotation>
<documentation>Source file of the theme XML.</documentation>
</annotation>
</attribute>
<attribute name="LocalizationFile" type="xs:string">
<annotation>
<documentation>Source file of the theme localization .wxl file.</documentation>
</annotation>
</attribute>
<attribute name="SuppressOptionsUI" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>If set to "yes", the Options button will not be shown and the user will not be able to choose an installation directory.</documentation>
</annotation>
</attribute>
<attribute name="SuppressDowngradeFailure" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>
If set to "yes", attempting to installer a downgraded version of a bundle will be treated as a successful do-nothing operation.
The default behavior (or when explicitly set to "no") is to treat downgrade attempts as failures.
</documentation>
</annotation>
</attribute>
<attribute name="SuppressRepair" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>If set to "yes", the Repair button will not be shown in the maintenance-mode UI.</documentation>
</annotation>
</attribute>
<attribute name="ShowVersion" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>If set to "yes", the application version will be displayed on the UI.</documentation>
</annotation>
</attribute>
<attribute name="SupportCacheOnly" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>If set to "yes", the bundle can be pre-cached using the /cache command line argument.</documentation>
</annotation>
</attribute>
<attribute name="Theme" use="required">
<annotation>
<documentation>The built-in theme to use.</documentation>
</annotation>
<simpleType>
<restriction base="xs:NMTOKEN">
<enumeration value="hyperlinkLargeLicense" />
<enumeration value="hyperlinkLicense" />
<enumeration value="hyperlinkSidebarLicense" />
<enumeration value="none" />
<enumeration value="rtfLargeLicense" />
<enumeration value="rtfLicense" />
</restriction>
</simpleType>
</attribute>
<anyAttribute namespace="##other" processContents="lax">
<annotation>
<documentation>
Extensibility point in the WiX XML Schema. Schema extensions can register additional
attributes at this point in the schema.
</documentation>
</annotation>
</anyAttribute>
</complexType>
</element>
|