Install self-signed SSL certificate in Windows 10

Опубликовано: 28 Декабрь 2020
на канале: Kapil Arya Microsoft MVP
21,400
125

In this video, see how you can install self-signed SSL certificate in Windows 10/Server. Read at: https://www.kapilarya.com/generate-se....

Code to generate SSL certificate, you can use after your own customization:

New-SelfSignedCertificate -Type Custom -Subject "CN={Your name},OU={Your OU},DC=www,DC=example,DC=com" -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.2","2.5.29.17={text}upn=example.com") -KeyUsage DigitalSignature -KeyAlgorithm ECDSA_nistP256 -CurveExport CurveName -CertStoreLocation "Cert:\CurrentUser\My"


#SSL #Windows10