main
wxs 27 lines 1.31 KB
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Fragment>
3 <ComponentGroup Id="ProductComponents">
4 <ComponentGroupRef Id="MinimalComponentGroup" />
5 <Component Directory="INSTALLFOLDER">
6 <File Id="VBScript.vbs" Source="test.txt" />
7 </Component>
8 </ComponentGroup>
9
10 <Binary Id="Binary1" SourceFile="test.txt" />
11 <CustomAction Id="Action1" VBScriptCall="EntryPoint1" BinaryRef="Binary1" />
12 <CustomAction Id="Action1J" JScriptCall="EntryPoint1" BinaryRef="Binary1" />
13 <CustomAction Id="Action2" VBScriptCall="EntryPoint1" FileRef="VBScript.vbs" />
14 <CustomAction Id="Action2J" JScriptCall="EntryPoint1" FileRef="VBScript.vbs" />
15 <CustomAction Id="Action3" Script="vbscript" ScriptSourceFile="test.txt" />
16 <CustomAction Id="Action3J" Script="jscript" ScriptSourceFile="test.txt" />
17
18 <InstallExecuteSequence>
19 <Custom Action="Action1" After="AppSearch" />
20 <Custom Action="Action1J" After="Action1" />
21 <Custom Action="Action2" After="Action1J" />
22 <Custom Action="Action2J" After="Action2" />
23 <Custom Action="Action3" After="Action2J" />
24 <Custom Action="Action3J" After="Action3" />
25 </InstallExecuteSequence>
26 </Fragment>
27 </Wix>