.universal/scripts.ps1
|
$newArgs = @{ Description = "Requests a new certificate from Let's Encrypt for the provided domain" Module = 'PowerShellUniversal.Apps.LetsEncrypt' Command = 'New-LetsEncryptCertificate' Environment = 'PowerShell 7' } New-PSUScript @newArgs $getArgs = @{ Description = 'Gets certificate information for the provided domain' Module = 'PowerShellUniversal.Apps.LetsEncrypt' Command = 'Get-LetsEncryptCertificate' Environment = 'PowerShell 7' } New-PSUScript @getArgs |