Hi there,Are you really limited to CERTUTIL? PowerShell can do great things... see:https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/providers/remove-item-for-certificate?view=powershell-5.1
Hi there,Are you really limited to CERTURIL?PowerShell can do great things, eg finding the Thumbprint with the CN:Get-ChildItem -path cert: -Recurse | where { $_.Subject -like "CN=*" } | Select ThumbprintOR:See this MS doc:Get-ChildItem -Path cert:\L...