https://github.com/walkingriver/timeservicewixdemo
Demonstrates a WiX setup project that installs a Windows Service, and also opens a TCP port during the installation as a custom action.
https://github.com/walkingriver/timeservicewixdemo
Last synced: 2 months ago
JSON representation
Demonstrates a WiX setup project that installs a Windows Service, and also opens a TCP port during the installation as a custom action.
- Host: GitHub
- URL: https://github.com/walkingriver/timeservicewixdemo
- Owner: walkingriver
- Created: 2013-08-01T12:30:38.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-08-01T14:05:52.000Z (almost 13 years ago)
- Last Synced: 2025-12-27T21:53:30.106Z (6 months ago)
- Language: C#
- Homepage:
- Size: 969 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
TimeServiceWixDemo
==================
Demonstrates a WiX setup project that installs and starts a Windows Service.
The service consists of a simple self-hosted WebApi controller with a single Index action that returns the current Date and time as a string.
The installer automatically installs and starts the service during installation, and will stop and remove the service during uninstallation.
It also demonstrates how to use a custom action to enable a WCF namespace reservation on a TCP port during the installation. This solution is thanks to Geoff Webber:
http://geoffwebbercross.blogspot.com/2011/08/wix-3-netsh-customaction.html