英文:
Remove Old NTAuth CA
问题
我可以看到使用这个命令可以看到2个CA证书。
证书预览
certutil.exe -enterprise -viewstore NTAuth
这些是已卸载的CA的遗留物。
可以安全删除吗?如果可以,如何删除?
我只能看到注册表键
注册表预览
但在证书mmc中找不到它们。
问候,
英文:
I can see 2 CA certificates with this command.
Certificate preview
certutil.exe -enterprise -viewstore NTAuth
These are remnants of the CA that was uninstalled.
Is it safe to delete it ? If yes, how do I delete it?
I only see the registry keys
Registry preview
but I can't find them in the certificate mmc.
Regards,
答案1
得分: -1
在管理员的命令行中,执行以下两个命令:
certutil -viewdelstore " ldap:///CN=NtAuthCertificates,CN=Public Key Services,...,DC=ForestRoot,DC=com?cACertificate?base?objectclass=certificationAuthority"
certutil -viewdelstore " ldap:///CN=NtAuthCertificates,CN=Public Key Services,...,DC=ForestRoot,DC=com?cACertificate?base?objectclass=pKIEnrollmentService"
英文:
I answer to myself if it help someone.
In an admin's shell, launch these 2 commands:
certutil -viewdelstore " ldap:///CN=NtAuthCertificates,CN=Public Key
Services,...,DC=ForestRoot,DC=com?cACertificate?base?objectclass=certificationAuthority"
certutil -viewdelstore " ldap:///CN=NtAuthCertificates,CN=Public Key
Services,...,DC=ForestRoot,DC=com?cACertificate?base?objectclass=pKIEnrollmentService"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论