programing

컴퓨터 저장소에서 인증서 삭제

css3 2023. 9. 12. 20:09

컴퓨터 저장소에서 인증서 삭제

모든 Windows 7(윈도우 7) 컴퓨터에 실수로 설치된 인증서를 컴퓨터 저장소로 삭제하는 데 파워셸을 얻는 데 어려움을 겪고 있습니다.

예를 들어 인증서가 설치된 위치의 스크린샷을 포함했습니다(실제 인증서가 아님).우리는 수백 대의 기계를 보유하고 있기 때문에 이것을 가능한 한 자동으로 하고 싶습니다.

일련 번호 또는 지문으로 인증서를 삭제할 수 있는 방법을 제공해 주시면 감사하겠습니다.

enter image description here

사용할 수 있습니다.Cert:-PS 드라이브(으Get-ChildItem그리고.Remove-Item. 예:

#Delete by thumbprint
Get-ChildItem Cert:\LocalMachine\My\D20159B7772E33A6A33E436C938C6FE764367396 | Remove-Item

#Delete by subject/serialnumber/issuer/whatever
Get-ChildItem Cert:\LocalMachine\My |
Where-Object { $_.Subject -match 'Frode F' } |
Remove-Item

언급URL : https://stackoverflow.com/questions/37228851/delete-certificate-from-computer-store