Windows-Xp

如何找出 certutil 的有效商店名稱

  • November 1, 2021

我正在嘗試找到一種腳本安裝證書的方法。

去“右鍵點擊-> 安裝證書”工作,並在 IE 的證書視圖中的“下級證書頒發機構”下顯示證書

如果找到 certutil.exe 命令,

certutil.exe -addstore -enterprise <storename>

我的問題是您如何列出/找出有效的商店名稱?

找到一個具有有效商店名稱的站點,這些名稱是:

ca -> Specifies certificates in the Intermediate Certification Authorities store
my -> Specifies certificates issued to the current user
root -> Specifies certificates in the Trusted Root Certification Authorities store
spc -> Specifies software publisher certificates
user_created_store -> Specifies the name of a user-created certificate store

您可以在 Powershell 中快速獲取列表:

PS> ls Cert:\LocalMachine

Name : TrustedPublisher
Name : ClientAuthIssuer
Name : Remote Desktop
Name : Root
Name : TrustedDevices
Name : WebHosting
Name : CA
Name : REQUEST
Name : AuthRoot
Name : TrustedPeople
Name : My
Name : SmartCardRoot
Name : Trust
Name : Disallowed

引用自:https://serverfault.com/questions/416914