我使用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
我导出了包含私钥的证书并安装在另一台机器上。但是,宏仍然在第二台机器中被阻止。宏设置是"禁用除数字签名宏之外的所有宏"
有人知道为什么会这样吗?
由于