WinCertes is a simple ACMEv2 Client for Windows, able to manage the automatic issuance and renewal of SSL Certificates, for IIS or other web servers. It is based on Certes Library. Pre-compiled binaries are available from GitHub (just look for the standard GitHub menu entry).
Requirements:
Features:
[*] Warning: Let's Encrypt does not allow wildcard certificates issuance with HTTP validation. So, the DNS validation mode MUST be used to retrieve wildcard certificate.
This OpenSource software is brought to you by EverTrust, which provides support plans for it as part of EverTrust Horizon software suite.
WinCertes.exe -e me@example.com -d test1.example.com -d test2.example.com -w=c:\inetpub\wwwroot -b "Default Web Site" -p
And... That's all! The certificate is requested from Let's Encrypt, and bound to IIS' Default Web Site
Advanced users can explore the different validation modes, deployment modes and other advanced options. See Registry Settings regarding advanced options and DNS validation modes.
-s, --service=VALUE the ACME Service URI to be used (optional,
defaults to Let's Encrypt)
-e, --email=VALUE the account email to be used for ACME requests (
optional, defaults to no email)
-d, --domain=VALUE the domain(s) to enroll (mandatory)
-w, --webserver[=ROOT] toggles the local web server use and sets its ROOT
directory (default c:\inetpub\wwwroot).
Activates HTTP validation mode.
-p, --periodic should WinCertes create the Windows Scheduler task
to handle certificate renewal (default=no)
-b, --bindname=VALUE IIS site name to bind the certificate to, e.g. "
Default Web Site". Defaults to no binding.
-n, --bindport=VALUE IIS site port to bind the certificate to, e.g. 443.
Defaults to 443, used only if -b is specified.
-f, --scriptfile=VALUE PowerShell Script file e.g. "C:\Temp\script.ps1"
to execute upon successful enrollment (default=
none)
-a, --standalone should WinCertes create its own WebServer for
validation. Activates HTTP validation mode.
WARNING: it will use port 80 unless -l is
specified.
-r, --revoke[=REASON] should WinCertes revoke the certificate identified
by its domains (to be used only with -d). REASON
is an optional integer between 0 and 5.
-k, --csp=VALUE import the certificate into specified csp. By
default WinCertes imports in the default CSP.
-t, --renewal=N trigger certificate renewal N days before
expiration, default 30
-l, --listenport=N listen on port N in standalone mode (for use with -
a switch, default 80)
--show show current configuration parameters
--reset reset all configuration parameters
--extra[=VALUE] manages additional certificate(s) instead of the
default one, with its own settings. Add an
integer index optionally to manage more certs.
--no-csp does not import the certificate into CSP. Use with
caution, at your own risks. REVOCATION WILL NOT
WORK IN THAT MODE.
--setopt=VALUE1:VALUE2 sets configuration options in the form key:value.
Typical usage: WinCertes.exe -a -e me@example.com -d test1.example.com -d test2.example.com -p
This will automatically create and register account with email me@example.com, and
request the certificate for test1.example.com and test2.example.com, then import it into
Windows Certificate store (machine context), and finally set a Scheduled Task to manage renewal.
"WinCertes.exe -d test1.example.com -d test2.example.com -r" will revoke that certificate.
By default, WinCertes uses Let's Encrypt (LE) CA to issue SSL certificates. However there are several cases in which one would like to use another CA:
-s https://acme-staging-v02.api.letsencrypt.org/directory
to the command line-s https://public-ca-acmev2.example.com
to the command line-s https://internal-ca-acmev2.example.corp
to the command line. If you need a solution to give ACMEv2 capabilities to your internal PKI, you can check e.g. EverTrust Horizon.WinCertes gives the option to launch a PowerShell script upon successfull enrollment. This script will receive two parameters:
The PFX can then be parsed using e.g. Get-PfxData, and later on re-exported with different pasword, or imported within a different Windows store.
The following code is a simple example of PowerShell script that you can call from WinCertes:
Param(
[Parameter(Mandatory=$True,Position=1)]
[string]$pfx,
[Parameter(Mandatory=$True)]
[string]$pfxPassword,
[Parameter(Mandatory=$True)]
[string]$cer,
[Parameter(Mandatory=$True)]
[string]$key
)
# Build the pfx object using file path and password
$mypwd = ConvertTo-SecureString -String $pfxPassword -Force -AsPlainText
$mypfx = Get-PfxData -FilePath $pfx -Password $mypwd
# Start the real work. Here we simply append the certificate DN to a text file
$mypfx.EndEntityCertificates.Subject | Out-File -FilePath c:\temp\test.txt -Append
# Copy certificate: here's an example for Apache
Copy-Item -Path $cer -Destination C:\\Program\ Files\\Apache\ Group\\Apache2\\conf\\server.crt
Copy-Item -Path $key -Destination C:\\Program\ Files\\Apache\ Group\\Apache2\\conf\\server.key
WinCertes can auto-configure IIS regarding the SSL certificate and its bindings (see below for more details). However, IIS configuration needs to be modified in order for WinCertes HTTP validation to work: WinCertes requires the "*" mimetype to be set, else IIS will refuse to serve the challenge file. WinCertes tries to do this automatically as well, but it might fail depending on your version and setup of IIS.
It is possible to fix the issue permanently:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".*" mimeType="application/octet-stream" />
<mimeMap fileExtension="." mimeType="application/octet-stream" />
</staticContent>
</system.webServer>
</configuration>
The logic for the IIS bindings is the following, executed after the certificate has been issued from the ACME server:
Therefore if you wish to have IIS listen on non-standard ports:
Usually when the enrollment fails you can get more information in the latest error message given by WinCertes. Most of the time it should look like:
Failed to register and validate order with CA: Could not validate challenge: Could not resolve DNS name test.example.com
Most common causes are:
-a
switch), the Windows Firewall gets in the way. Try to fully deactivate it.-w
switch.-s https://acme-staging-v02.api.letsencrypt.org/directory
to the command line when you test the enrollment!If you have a bug or feature and you can fix the problem yourself please just:
If you cannot provide a fix for the problem yourself, please file an issue and describe the fault with steps to reproduce.
The development requires Visual Studio 2017 or 2019, and Wix if you want to build the installer.
This project is (c) 2018-2019 Alexandre Aufrere
Released under the terms of GPLv3