如何在另一台计算机上使用自签名证书?

时间:2017-05-31 00:47:22

标签: excel-vba certificate self-signed excel-2016 vba

我使用New-SelfSignedCertificate函数在Windows 10中创建了一个自签名证书,如下所示:

New-SelfSignedCertificate -CertStoreLocation Cert:\CurrentUser\My -Subject "CN=VBA Code Signing" -KeyAlgorithm RSA -KeyLength 2048 -Provider "Microsoft Enhanced RSA and AES Cryptographic Provider" -KeyExportPolicy Exportable -KeyUsage DigitalSignature -Type CodeSigningCert

我导出了包含私钥的证书并安装在另一台机器上。但是,宏仍然在第二台机器中被阻止。宏设置是"禁用除数字签名宏之外的所有宏"

有人知道为什么会这样吗?

由于

0 个答案:

没有答案