Hi Ian Xue,
Thanks for the quick update.
I also want to know whether i could use this command to collect the device names with duplicate certificates using a SCCM Query.
Thanks
Mujahith
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I want to know if there is a PowerShell command that can find and delete duplicate old machine certificates from the local machine store.
I want to know if there is a query to find devices with duplicate certificates in "Cert:\LocalMachine\My" location.
Thanks,
Muja
Hi Ian Xue,
Thanks for the quick update.
I also want to know whether i could use this command to collect the device names with duplicate certificates using a SCCM Query.
Thanks
Mujahith
Hi @Mujahith Muzamil ,
You can filter out the subjects of duplicate values like this
$certs = Get-ChildItem -Path "Cert:\LocalMachine\My"
$certs.subject | Where-Object { ($certs.subject -eq $_).Count -gt 1}
Hope this helps.
Best Regards,
Ian Xue
-----------------------------
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.