Powershell申请自签名证书
Powershell申请自签名证书
说到自签名证书,相信大家应该会经常使用openssl进行申请,但是用powershell的还是比较少的,今天主要介绍使用Powershell来申请一个自签名证书,具体见下:
1.提交申请
$mycert = New-SelfSignedCertificate -DnsName "DomainName" -CertStoreLocation "cert:\CurrentUser\My" -NotAfter (Get-Date).AddYears(5) -KeySpec KeyExchange
2.导出Cer格式的证书文件
$mycert | Export-Certificate -FilePath d:\mycert.cer
3.导出pfx格式的证书文件
因为PFX格式自带证书,所以我们需要指定一个密码;
$mycert | Export-PfxCertificate -FilePath d:\mycert.pfx -Password $(ConvertTo-SecureString -String "123456" -AsPlainText -Force)
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~