| 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" |
| 3 | xmlns:iis="http://wixtoolset.org/schemas/v4/wxs/iis"> |
| 4 | <Fragment> |
| 5 | <Property Id="PORT" Value="3062" /> |
| 6 | |
| 7 | <Binary Id="MyCertBits" SourceFile="example.txt" /> |
| 8 | |
| 9 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> |
| 10 | <Component Id="MyCert" Guid=""> |
| 11 | <iis:Certificate |
| 12 | Id="Certificate.MyCert" |
| 13 | Name="MyCert certificate" |
| 14 | Request="no" |
| 15 | StoreLocation="localMachine" |
| 16 | StoreName="trustedPublisher" |
| 17 | Overwrite="yes" |
| 18 | BinaryRef="MyCertBits" /> |
| 19 | </Component> |
| 20 | |
| 21 | <Component> |
| 22 | <File Source="example.txt" /> |
| 23 | |
| 24 | <iis:WebSite Id="Test" Description="Test web server" Directory="TestWebSiteProductDirectory" AutoStart="yes" DirProperties="ReadAndExecute" ConfigureIfExists="no" > |
| 25 | <iis:WebAddress Id="TestAddress" Port="[PORT]" Secure="no" /> |
| 26 | </iis:WebSite> |
| 27 | </Component> |
| 28 | </ComponentGroup> |
| 29 | |
| 30 | <iis:WebDirProperties Id="ReadAndExecute" /> |
| 31 | </Fragment> |
| 32 | </Wix> |