WinSW is an executable binary, which can be used to wrap and manage a custom process as a Windows service.
Once you download the installation package, you can rename winsw.exe
to any name, e.g. myService.exe
.
See the project manifest.
Starting from WinSW 2.x
, the releases are being hosted on GitHub and nuget.org.
Due to historical reasons, the project also uses Jenkins Maven repository as a secondary source. Binaries are available here.
The executables in all sources are strong-named assemblies, which are being singed by randomly generated keys. Do not rely on such strong names for security (as well as on other strong names as it recommended by Microsoft). They provide a unique identity only.
WinSW is being managed by configuration files: Main XML Configuration file and EXE Config file.
Your renamed winsw.exe
binary also accepts the following commands:
install
to install the service to Windows Service Controller. This command requires some preliminary steps described in the Installation Guide.uninstall
to uninstall the service. The opposite operation of above.start
to start the service. The service must have already been installed.stop
to stop the service.restart
to restart the service. If the service is not currently running, this command acts likestart
.status
to check the current status of the service.- This command prints one line to the console.
NonExistent
indicates the service is not currently installedStarted
to indicate the service is currently runningStopped
to indicate that the service is installed but not currently running.
WinSW 1.x
Executable is being built with a .NET Framework 2.0
target, and by defaut it will work only for .NET Framework versions below 3.5
.
On the other hand, the code is known to be compatible with .NET Framework 4.0
and above.
It is possible to declare the support of this framework via the exe.config
file.
See the Installation Guide for more details.
WinSW 2.x
offers two executables, which declare .NET Frameworks 2.0
and 4.0
as targets.
Naming and download sources for these binaries are currently in flux.
- Installation Guide - Describes the installation process for different systems and .NET versions
- Release notes
- Configuration:
- Main XML Configuration file
- EXE Configuration File
- Logging and Error Reporting
- Extensions
- Use-cases:
- Self-restarting services
- Deferred File Operations
- Configuration Management:
- Puppet Forge Module
This is a new release line under active development.
Major changes since 1.x:
- New executable package targeting the .NET Framework
4.0
. .NET Framework2.0
is still supported. - Migration of the logging subsystem to
Apache log4net
- Internal extension engine, which allows extending the wrapper's behavior.
See the full changelog in the release notes.
The version 2.x
is fully compatible with the 1.x
configuration file format,
hence the upgrade procedure just requires replacement of the executable file.
This is an old baseline of WinSW. Currently it is in the maintenance-only state. New versions with fixes may be released on-demand.
- IDE: Visual Studio Community 2013 (free for open-source projects)
winsw_key.snk
should be available in the project's root in order to build the executable- You can generate the certificate in "Project Settings/Signing"
- The certificate is in
.gitignore
list. Please do not add it to the repository