PoshCode Archive  Artifact [2e5664e00b]

Artifact 2e5664e00b402432589a6c34b0076646abafd5608a77f484bb2c647bda13d103:

  • File Add-SSL-Cert-to-IIS.ps1 — part of check-in [896dff79e4] at 2018-06-10 14:09:28 on branch trunk — How to add a SSL Certificate to IIS with Powershell as well as set the SSL Binding for the site that’s using the certificate. (user: Brian H Madsen size: 861)

# encoding: ascii
# api: powershell
# title: Add SSL Cert to IIS
# description: How to add a SSL Certificate to IIS with Powershell as well as set the SSL Binding for the site that’s using the certificate.
# version: 0.1
# type: function
# author: Brian H Madsen
# license: CC0
# function: Add-SSLCertificate
# x-poshcode-id: 6168
# x-archived: 2016-04-17T09:18:45
# x-published: 2016-01-07T21:20:00
#
# This uses a PFX certificate file.
#
function Add-SSLCertificate{
    param([string]$pfxPath,[string]$pfxPassword,[string]$hostHeader,[string]$siteName)

    $certMgr = New-Object -ComObject IIS.CertObj -ErrorAction SilentlyContinue    
    $certMgr.ImportToCertStore($pfxPath,$pfxPassword,$true,$true)

    Import-Module WebAdministration;
    New-WebBinding -Name $siteName -Port 443 -Protocol https -HostHeader $hostHeader    
}