- Use MakeCert tool
- Download the SDK, install it
- Look in folder
- C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin
- Use this template to generate your certificate
Makecert has been deprecated, and powershell is now used
New-SelfSignedCertificate -Subject “RDS.Contoso.local” -DnsName “RDS.Contoso.com”, “www.contoso.com” -CertStoreLocation “cert:\LocalMachine\My” -KeyAlgorithm RSA -KeyLength 2048 -KeyExportPolicy Exportable -NotAfter (Get-Date).AddYears(5)
No comments:
Post a Comment