自己署名証明書の作り方毎回忘れるから書いておく。

$cert = New-SelfSignedCertificate -certstorelocation cert:\localmachine\my -dnsname hoge.jp
$pwd = ConvertTo-SecureString -String 'passw0rd!' -Force -AsPlainText
$path = 'cert:\localMachine\my\' + $cert.thumbprint
Export-PfxCertificate -cert $path -FilePath c:\temp\cert.pfx -Password $pwd

こちら を見ると IIS Manager で Self-Signed Certificate は作れるので上記はいらないかもしれない。