使用 PowerShell 从计算机存储中删除证书
Rohan Timalsina
2022年7月18日
在 Windows 操作系统中,证书存储在计算机本地的证书存储中。它包含不同认证机构颁发的各种证书。
PowerShell 允许你在计算机上查找、添加和删除证书和证书存储。本教程将教你使用 PowerShell 从证书存储中删除证书。
在 PowerShell 中使用 Remove-Item
Cmdlet 从计算机中删除证书
证书存储在计算机的 Cert:
驱动器中。你可以使用 Get-ChildItem
查看证书驱动器的内容。
Get-ChildItem Cert:
输出:
Location : CurrentUser
StoreNames : {SmartCardRoot, Root, Trust, AuthRoot...}
Location : LocalMachine
StoreNames : {TestSignRoot, ClientAuthIssuer, OemEsim, Remote Desktop...}
以下示例显示位置 Cert:\LocalMachine
中的证书存储。
Get-ChildItem Cert:\LocalMachine
输出:
以下命令获取位于 Cert:\LocalMachine\My
中的证书。
Get-ChildItem Cert:\LocalMachine\My
输出:
Thumbprint Subject
---------- -------
44D46A6187F9CD61FA958A580B7D4088650AE3FA CN=NVIDIA GameStream Server
0751530261173474BDAB820A9868BE7BD9D92E75 CN=F900CAE78D90FFE5
你可以使用 Remove-Item
cmdlet 从计算机中删除指定的证书。它是一个方便的工具,可以删除不同类型的项目,例如文件、目录、变量、注册表项、函数和别名。
此命令从 My
证书存储中删除证书。
Remove-Item Cert:\LocalMachine\My\0751530261173474BDAB820A9868BE7BD9D92E75
它不影响私钥。你必须使用 -DeleteKey
参数来删除私钥和证书。
Remove-Item Cert:\LocalMachine\My\0751530261173474BDAB820A9868BE7BD9D92E75 -DeleteKey
现在你应该知道如何从计算机上的证书存储中删除证书了。有关详细信息,请参阅 about_Certificate_Provider
。
Author: Rohan Timalsina