Eliminar Certificado Digital Windows 11 Link
# List certificates (find thumbprint) Get-ChildItem -Path Cert:\CurrentUser\My Get-ChildItem -Path Cert:\CurrentUser\My | Where-Object $_.Thumbprint -eq "THUMBPRINT_HERE" | Remove-Item
For Local Machine:
Dispatches from a Size Fantasy Writer
# List certificates (find thumbprint) Get-ChildItem -Path Cert:\CurrentUser\My Get-ChildItem -Path Cert:\CurrentUser\My | Where-Object $_.Thumbprint -eq "THUMBPRINT_HERE" | Remove-Item
For Local Machine: