How to create a self signed cert using Powershell in Windows Server 2016

preview_player
Показать описание
Professor Robert McMillen shows you how to create a self signed cert using Powershell in Windows Server 2016
New-SelfSignedCertificate -certstorelocation cert:\localmachine\my -dnsname "cert1"
$pwd = ConvertTo-SecureString -String "Passw0rd" -Force -AsPlainText
Рекомендации по теме
Комментарии
Автор

Thank!
How change -type so the purpose of cert show "<All>" ?

cinodio-g
Автор

Thank you for making this video, very helpful and straight to the point!

cnordbott
Автор

Thank you so much this was very helpful I have been able to finish my assignment

victoriabaiden
Автор

Its' the first time I've taken advice from a James Bond villain and it's paid off. I can't help thinking I've done something bad though.

jaxonrox
Автор

Anyone with the certificate can use it ? If so it is not secure to use certificates right. Is there any secure way to use this certificates?

monishac
Автор

Hey Robert nice video. Do u have a video to change the SSL cert.. with a PS script?

cristianeste
Автор

Great video. How would I create and add it to Remote Desktop? I need to script this so I would like it to be placed in Remote Desktop as opposed to being in personal. Is there a way to do that or is there an easy way to move it via power shell after it has been created?

mtbevins
Автор

Nailed it to fix a Chrome SSL certificate issue where the website wouldn't be shown with a cert created in IIS.

paulonyoutube
Автор

Thanks, Professor for the video I learn a lot. Actually I have a question How to check the revocation status of the self signed certificate? Who revoke the self signed certificate? thanks

abbagarba
Автор

New-SelfSignedCertificate -certstorelocation cert:\localmachine\my -dnsname "caart-cert"
$pwd = ConvertTo-SecureString -String "Passw0rd" -Force -AsPlainText

MilannsWorld
Автор

I am looking for 5 years self sign, how to create?

sriswan
Автор

I'm getting access denied when i insert these lines of code in powershell

vitorpolovanick