Added Firewall rule. Moved URLACL to its own file for ease of reading. Added auto service start back in now that the service is working correctly. #7
12 lines
517 B
XML
12 lines
517 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
|
xmlns:http="http://schemas.microsoft.com/wix/HttpExtension">
|
|
<Fragment>
|
|
<Component Id="URLReservation" Guid="{35F39190-88CA-4D1D-B066-9F9CAB328F4D}" Directory="INSTALLFOLDER" KeyPath="yes">
|
|
<http:UrlReservation Id="EndpointUrlAcl" Url="http://*:8800/" HandleExisting="ignore">
|
|
<http:UrlAce SecurityPrincipal="Everyone" Rights="all"/>
|
|
</http:UrlReservation>
|
|
</Component>
|
|
</Fragment>
|
|
</Wix>
|