• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Powershell实现导入安装证书功能脚本分享

    支持所有版本。
    通常从文件加载一个证书并且安装它到指定的库。可以使用下面的脚本:

    复制代码 代码如下:

    $pfxpath = 'C:\temp\test.pfx'
    $password = 'test'
    [System.Security.Cryptography.X509Certificates.StoreLocation]$Store = 'CurrentUser'
    $StoreName = 'root'
     
    Add-Type -AssemblyName System.Security
    $certificate = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
    $certificate.Import($pfxpath, $password, 'Exportable')
     
    $Store = New-Object system.security.cryptography.X509Certificates.x509Store($StoreName, $StoreLocation)
    $Store.Open('ReadWrite')
    $Store.Add($certificate)
    $Store.Close()

    现在你可以配置这个脚本,指定证书的位置和密码。你还可以指定存储位置(当前用户或本地计算机)并添加证书(例如被信任的根证书)或私有证书。

    上一篇:Windows Powershell 定义函数
    下一篇:Powershell改变脚本执行优先权的代码分享
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Powershell实现导入安装证书功能脚本分享 Powershell,实现,导入,安装,