Nov 03, 2017
10:05 AM
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
... View more
Nov 03, 2017
10:02 AM
Have you tried coding like: [ for left square bracket [ ] for right square bracket ]
... View more
Nov 03, 2017
09:40 AM
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 Thumbprint OR: See this MS doc: Get-ChildItem -Path cert:\LocalMachine -DnsName *Fabrikam* | Remove-Item Description ----------- This command deletes all certificates that have a DNS name that contains "Fabrikam". It uses the DNSName parameter of the Get-ChildItem cmdlet to get the certificates and the Remove-Item cmdlet to delete them. Kind regards, Marc
... View more
Latest posts by mduiker
Subject | Views | Posted |
---|---|---|
5427 | Nov 03, 2017 10:05 AM | |
1191 | Nov 03, 2017 10:02 AM | |
5427 | Nov 03, 2017 09:40 AM |
Activity Feed
- Posted Re: How to delete a SSL certificate using certutil on InstallShield Forum. Nov 03, 2017 10:05 AM
- Posted Re: Create Registry Key name in a backet [123] on InstallShield Forum. Nov 03, 2017 10:02 AM
- Posted Re: How to delete a SSL certificate using certutil on InstallShield Forum. Nov 03, 2017 09:40 AM