Certificate Management on Windows
Using 'Certificate Manager (certlm.msc)'
To see what certificates are installed on your Windows machine, you can use the Certificate Manager (certlm.msc):
- Press
Win + Rto open the Run dialog - Type
certlm.mscand pressEnter. This opens the Certificate Manager for the local machine
Import a certificate - To do: ...
Powershell
Find a certificate by its Issued To name
using PowerShell in the Local Machine's Personal story:
Get-ChildItem -Path Cert:\LocalMachine\My | Where-Object { $_.Subject -like "*domain.net*" }