blob: 65cba20e8d8aad09ff2d2a7ac7827905917e86cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Fragment>
<ComponentGroup Id="ProductComponents">
<Component Directory="INSTALLFOLDER">
<File Id="test.txt" Source="test.txt" />
<ServiceInstall Name="SampleService" ErrorControl="ignore" Start="disabled" Type="ownProcess" />
<ServiceControl Name="SampleService" Start="install" Stop="uninstall" Remove="uninstall" Wait="yes" />
</Component>
</ComponentGroup>
</Fragment>
</Wix>
|