February 2019
Beginner to intermediate
698 pages
12h 50m
English
To provide a valid certificate for our tasks, we need to install the Posh-ACME PowerShell module to use let's encrypt as our certificate provider. The certificates are valid for three months, without any cost. If you want to use your environment for longer, you just need to renew the certificate.
# Install for all users (requires an elevated PowerShell) Install-Module -Name Posh-ACME # Install for current user Install-Module -Name Posh-ACME -Scope CurrentUser ...